diff --git a/ch07.adoc b/ch07.adoc index 91cf262d..ec9232ce 100644 --- a/ch07.adoc +++ b/ch07.adoc @@ -62,7 +62,7 @@ If adjacent intervals are contiguous, the shared endpoint must be represented in + [[img-bnd_1d_coords, figure 1]] [.text-center] -.Order of **`lonbnd(i,0)`** and **`lonbnd(i,1)`** as well as of **`latbnd(i,0)`** and **`latbnd(i,1)`** in the case of one-dimensional horizontal coordinate axes. Tuples **`(lon(i,j),lat(i,j))`** represent grid cell centers. The four grid cell vertices are given by **`(lonbnd(i,j,0),latbnd(i,j,0))`**, **`(lonbnd(i,j,1),latbnd(i,j,0))`**, **`(lonbnd(i,j,1),latbnd(i,j,1))`** and **`(lonbnd(i,j,0),latbnd(i,j,1))`**. +.Order of **`lonbnd(i,0)`** and **`lonbnd(i,1)`** as well as of **`latbnd(i,0)`** and **`latbnd(i,1)`** in the case of one-dimensional horizontal coordinate axes. Tuples **`(lon(i),lat(j))`** represent grid cell centers. The four grid cell vertices are given by **`(lonbnd(i,0),latbnd(j,0))`**, **`(lonbnd(i,1),latbnd(j,0))`**, **`(lonbnd(i,1),latbnd(j,1))`** and **`(lonbnd(i,0),latbnd(j,1))`**. image::images/order_horizontal_bounds__1D_coord_variables.png[,50%,pdfwidth=50vw,align="center"] Bounds for 2-D coordinate variables with 4-sided cells:: In the case where the horizontal grid is described by two-dimensional auxiliary coordinate variables in latitude **`lat(n,m)`** and longitude **`lon(n,m)`**, and the associated cells are four-sided, then the boundary variables are given in the form **`latbnd(n,m,4)`** and **`lonbnd(n,m,4)`**, where the trailing index runs over the four vertices of the cells. Let us call the side of cell **`(j,i)`** facing cell **`(j,i-1)`** the "**`i-1`**" side, the side facing cell **`(j,i+1)`** the "**`i+1`**" side, and similarly for "**`j-1`**" and "**`j+1`**". Then we can refer to the vertex formed by sides **`i-1`** and **`j-1`** as **`(j-1,i-1)`**. With this notation, the four vertices are indexed as follows: **`0=(j-1,i-1)`**, **`1=(j-1,i+1)`**, **`2=(j+1,i+1)`**, **`3=(j+1,i-1)`**. diff --git a/images/order_horizontal_bounds__1D_coord_variables.pdf b/images/order_horizontal_bounds__1D_coord_variables.pdf index 40e52cc1..08bd9c4c 100644 Binary files a/images/order_horizontal_bounds__1D_coord_variables.pdf and b/images/order_horizontal_bounds__1D_coord_variables.pdf differ diff --git a/images/order_horizontal_bounds__1D_coord_variables.png b/images/order_horizontal_bounds__1D_coord_variables.png index 44d0fba2..dc99359a 100644 Binary files a/images/order_horizontal_bounds__1D_coord_variables.png and b/images/order_horizontal_bounds__1D_coord_variables.png differ