Displaying 1 result from an estimated 1 matches for "list_lat".
Did you mean:
list_cat
2012 Oct 03
0
ggplot2 problem
...orms input matrix to make_stars function:
transpose_stars = function(lat_b, long_b,lat_t,long_t,step){
matrix <- readSO2Data(lat_b, long_b) // read an arbitrary point for
calculating matrix size
nlat <- (lat_t-lat_b)/step+1
nlong <- (long_t-long_b)/step+1
ntime <- length(matrix$value)
list_lat<-list()
list_long<-list()
list_time<-list()
for( m in 1:nlat){
list_lat[m]<-toString(lat_b + step*(m-1))
}
for( m in 1:nlong){
list_long[m]<-toString(long_b + step*(m-1))
}
for( m in 1:ntime){
list_time[m]<-toString(m)
}
test<-array(data=NA,dim=c(nlat,nlong,ntime),list(lat =...