## ----include = FALSE----------------------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.align = "center",
  warning = FALSE,
  message = FALSE
)

## ----glossary_of_terms, echo = FALSE------------------------------------------
knitr::kable(
  data.frame(
    Term = c("**Bias**",
             "**Calibration**",
             "**Climate Model**",
             "**Climatology**",
             "**Downscaling**",
             "**Ensemble**",
             "**Forecast date**",
             "**Leadtime**",
             "**Hindcast**",
             "**Hindcast period**",
             "**Initialisation (start) date**",
             "**Reanalysis**",
             "**Skill**",
             "**Uncertainty**",
             "**Verification or validation**"),
    Definition = c("The systematic differences (for example, a tendency to overestimate temperature) between a climate model and observed climate.",
                   "The statistical adjustment of raw model outputs to correct for systematic biases and improve reliability using the observational reference. Calibration typically involves comparing historical forecasts with observations to develop correction factors that are then applied to new forecasts.",
                   "Mathematical model for quantitatively describing, simulating, and analysing the interactions between the atmosphere and underlying surface (e.g., ocean, land, and ice), relying on underlying physical principles and equations. Climate models are used to simulate past, present, and future climate conditions.",
                   "The long-term average of meteorological variables calculated over a specific baseline period.",
                   "The process of translating coarse-resolution global model forecasts to finer spatial scales to provide more localised predictions. Downscaling can be statistical (using empirical relationships between large-scale and local conditions) or dynamical (using higher-resolution regional models nested within global models). Downscaling may also include bias adjustments to reduce model biases.",
                   "A collection of multiple forecast simulations (called members) for the same time period, created by running a model with slightly different initial conditions or model parameters. Ensembles help quantify uncertainty by showing the range of possible outcomes rather than a single deterministic prediction.",
                   "The future date or period for which a prediction is made.",
                   "The interval between initialisation date and forecast date.",
                   "Historical forecast initialised using observed conditions.",
                   "A standard period (1994 to 2016) used to calibrate and assess the skill of the forecast model.",
                   "The specific date when a forecast model begins its simulation.",
                   "A dataset created by combining historical observations with a consistent modern forecast model to produce a comprehensive, physically coherent record of past weather conditions. Reanalysis datasets provide a gridded, gap-free representation of historical conditions and are often used as reference data for model development and validation.",
                   "The ability of a forecast model to correctly predict an outcome. It can be measured using a variety of different metrics.",
                   "The range of possible outcomes in a forecast, typically represented by the spread of ensemble members. Greater uncertainty indicates a wider range of possible outcomes and typically lower confidence in any specific outcome.",
                   "The process of evaluating forecast performance by comparing predictions to observed outcomes. Validation metrics may include measures of accuracy, bias, reliability, and skill relative to reference forecasts like climatology."
    )
    ),
  format = "markdown",
  caption = "Table 1: Glossary of Terms."
)

