Re: [R-sig-Geo] variogramCloud to gstatVariogram in gstat

2019-10-01 Thread Edzer Pebesma
Not elegant, but this might work: x # is your variogramCloud x$np = 1 class(x) = c("gstatVariogram", "data.frame") On 10/1/19 8:20 PM, Benjamin Hemingway wrote: > Hello, > > I am computing the variogram from points measured along profiles. I do not > want to compute the variogram from pairs of

[R-sig-Geo] variogramCloud to gstatVariogram in gstat

2019-10-01 Thread Benjamin Hemingway
Hello, I am computing the variogram from points measured along profiles. I do not want to compute the variogram from pairs of points belonging to the same profile. To accomplish this I am iterating through each point and computing the variogram cloud, keeping only the point pairs that I want.