You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 20, 2018. It is now read-only.
This file from our server: GT_SSD-L2-SEVIR_LST_2-20130725_120000-LIPM-0.05X0.05-V1.0.nc
And the R code, something like:
library(ncdf4)
# load the netcdf file to Rncfile<- nc_open("path/to/the/nc/file")
# extract known layerslst<- ncvar_get(ncfile, "LST")
lat<- ncvar_get(ncfile, "lat")
lon<- ncvar_get(ncfile, "lon")
# get the extremes
min(lst, na.rm=TRUE) -273.15
max(lst, na.rm=TRUE) -273.15# show a very simple "heatmap"
image(lst)
# convert to a data framedata<-data.frame(lat= as.vector(lat),
lon= as.vector(lon),
lst= as.vector(lst) -273.15)
The text was updated successfully, but these errors were encountered:
This file from our server:
GT_SSD-L2-SEVIR_LST_2-20130725_120000-LIPM-0.05X0.05-V1.0.nc
And the R code, something like:
The text was updated successfully, but these errors were encountered: