Description Usage Format Source Examples
the surface air temperature in Celsius observed by a network of weather stations in 1961 through 1990.
1 |
A list of year, latlon (global grid point in degree), obs (temperature)
This data set was organized by Jones, Raper, Cherry, Goodess, Wigley, Santer, and Kelly (1991). The primary sources of this data can be obtained from http://cdiac.esd.ornl.gov/ftp.
1 2 3 4 5 6 7 8 9 10 11 | ### Observations of year 1967
data(temperature)
names(temperature)
# Temperatures on 939 weather stations of year 1967
temp67 <- temperature$obs[temperature$year == 1967]
# Locations of 939 weather stations
latlon <- temperature$latlon[temperature$year == 1967, ]
# Plot of the observations
sw.plot(z = temp67, latlon=latlon, type="obs", xlab="", ylab="")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.