From 67d90ea28fab7c3b91084f13763d8239a10051ee Mon Sep 17 00:00:00 2001 From: Tammas Loughran Date: Tue, 14 Nov 2023 12:47:07 +1100 Subject: [PATCH] Added reference to API documentation for land and x y relationship --- documentation/docs/user_guide/inputs/meteorological_forcing.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/documentation/docs/user_guide/inputs/meteorological_forcing.md b/documentation/docs/user_guide/inputs/meteorological_forcing.md index d3a6f484a..10fde4546 100644 --- a/documentation/docs/user_guide/inputs/meteorological_forcing.md +++ b/documentation/docs/user_guide/inputs/meteorological_forcing.md @@ -60,7 +60,7 @@ variables: time:time_origin = " 1949-JAN-01 00:00:00" ; ``` -Most of the variables will be structured as SWdown is above. The relationship between “land” and “x” and “y” inside the CABLE netcdf driver is: +Most of the variables will be structured as SWdown is above. The relationship between `land` and `x` and `y` inside the CABLE netcdf driver is: ```fortran y = INT((landGrid(j)-1)/xdimsize) @@ -68,6 +68,7 @@ x = landGrid(j) - y*xdimsize y = y + 1 ``` +From (`cable_input.F90`)[https://cable.readthedocs.io/en/latest/api/sourcefile/cable_input.f90.html#ln-633], where landGrid is the `land` variable above. ## Variables