Displaying 1 result from an estimated 1 matches for "lat_b".
Did you mean:
lat_1
2012 Oct 03
0
ggplot2 problem
...6029e+12 2005-05-14 0.1991832405
227 1.116115e+12 2005-05-15 -0.0029508672
228 1.116202e+12 2005-05-16 0.1759385169
229 1.116288e+12 2005-05-17 -0.7524182200
230 1.116374e+12 2005-05-18 0.0271098670
Here is the code wich forms 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...