我想使用日期为 2018-01-01 至 2018-01-11 的数据绘制时空图,尤其是 Hovmoller 图。如何按日期读取数据

I wanted to plot space time graph especially Hovmoller plot using the data having date 2018-01-01 to 2018-01-11. How to make read datewise, data

提问人:Shibashankar Gouda 提问时间:11/16/2023 更新时间:11/16/2023 访问量:13

问:

我想使用日期为 2018-01-01 至 2018-01-11 的数据绘制时空图,尤其是 Hovmoller 图。如何按日期读取,aod 数据也

在此之后,我想绘制时空变异函数,知道该怎么做吗?? 谢谢

sp<-select(AOD_st,contains("l"))

space<-SpatialPoints(sp)

WGS84 <- CRS("+init=epsg:4326")

proj4string(space)<-WGS84

data=data.frame(AOD_st[3:length(AOD_st)])

time <- as.POSIXct(c("2018-01-01"),tz="GMT")

endTime<-as.POSIXct(c("2018-01-11"),tz="GMT")

stfdf =STFDF(space,time,data,endTime)

stplot(stfdf,mode="xt",scaleX=0)

这样我就在尝试 我的数据集是卫星网格化数据

R 数据帧 gstat

评论


答: 暂无答案