From 7b32e0bf1a183f2809c0a0d9e642cb9dea0e0b98 Mon Sep 17 00:00:00 2001 From: Anthony Lee Date: Tue, 7 Oct 2025 11:22:37 -0700 Subject: [PATCH 1/3] Fixed dimension variable and name typo --- fundamentals/01.1_creating_data_structures.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fundamentals/01.1_creating_data_structures.ipynb b/fundamentals/01.1_creating_data_structures.ipynb index 826b9c35..d8dfcfc1 100644 --- a/fundamentals/01.1_creating_data_structures.ipynb +++ b/fundamentals/01.1_creating_data_structures.ipynb @@ -241,7 +241,7 @@ "\n", "Sometimes we want to attach coordinate variables along an existing dimension. Notice that \n", "1. `itime` is not bolded and \n", - "2. has a name \"time\" that is different from the dimension name \"time\"\n", + "2. has a variable name \"itime\" that is different from the dimension name \"time\"\n", "\n", "`itime` is an example of a non-dimension coordinate variable i.e. it is a coordinate variable that does not match a dimension name. Here we demonstrate the \"tuple\" form of assigninment: `(dims, data, attrs)`" ] From c487a81fa8e69ed94ef2dd12f60ab687f8378554 Mon Sep 17 00:00:00 2001 From: Anthony Lee Date: Tue, 7 Oct 2025 11:46:52 -0700 Subject: [PATCH 2/3] Changed wording to improve variable v name clarity --- fundamentals/01.1_creating_data_structures.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fundamentals/01.1_creating_data_structures.ipynb b/fundamentals/01.1_creating_data_structures.ipynb index d8dfcfc1..7aa2176b 100644 --- a/fundamentals/01.1_creating_data_structures.ipynb +++ b/fundamentals/01.1_creating_data_structures.ipynb @@ -241,7 +241,7 @@ "\n", "Sometimes we want to attach coordinate variables along an existing dimension. Notice that \n", "1. `itime` is not bolded and \n", - "2. has a variable name \"itime\" that is different from the dimension name \"time\"\n", + "2. has a coordinate variable \"itime\" that is different from the dimension name \"time\"\n", "\n", "`itime` is an example of a non-dimension coordinate variable i.e. it is a coordinate variable that does not match a dimension name. Here we demonstrate the \"tuple\" form of assigninment: `(dims, data, attrs)`" ] From f8cd4171a57739f41771dff2754d47b841844039 Mon Sep 17 00:00:00 2001 From: Anthony Lee Date: Tue, 7 Oct 2025 16:04:33 -0700 Subject: [PATCH 3/3] Incorporating reviewer feedback --- fundamentals/01.1_creating_data_structures.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fundamentals/01.1_creating_data_structures.ipynb b/fundamentals/01.1_creating_data_structures.ipynb index 7aa2176b..d820cbd5 100644 --- a/fundamentals/01.1_creating_data_structures.ipynb +++ b/fundamentals/01.1_creating_data_structures.ipynb @@ -241,7 +241,7 @@ "\n", "Sometimes we want to attach coordinate variables along an existing dimension. Notice that \n", "1. `itime` is not bolded and \n", - "2. has a coordinate variable \"itime\" that is different from the dimension name \"time\"\n", + "2. has a name \"itime\" that is different from the dimension name \"time\"\n", "\n", "`itime` is an example of a non-dimension coordinate variable i.e. it is a coordinate variable that does not match a dimension name. Here we demonstrate the \"tuple\" form of assigninment: `(dims, data, attrs)`" ]