Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

then combine those numbers into proper date variables. Print the results of these function calls to check exactly what they are returning before you try to convert them into date variables. You will need to divide the time variable (t) to convert it into a fraction of a day before adding it to the date variable (d).

Info
The grib_get() functions are general-purpose functions to get pieces of meta-data from a GRIB field, specified by keys such as 'validityDate'. The Grib Examiner can help you find the available keys.

...

Your result shows the monthly anomalies for January 2014 compared with the previous 5 years. 

Finding points with large anomalies

Image Added

See if you can find the points which have anomalies over a certain threshold (e.g. 4 degrees). Create a geopoints variable with the result.

One possible way to do it:

  • convert the anomaly field to geopoints (conversion to geopoints only works with one field at a time)
  • use the filter() and abs() functions to find just the absolute values greater than 4
  • plot with customised Symbol Plotting icons (we could take the ones used in the Processing Data tutorial)