PNNL-TES / cpcrw

Data and code for CPCRW work
0 stars 0 forks source link

Deal with different measurement points #3

Closed bpbond closed 9 years ago

bpbond commented 9 years ago

SLA, ALD (September), and NPP were measured/calculated at different points:

> unique(ald$Position_m)
 [1]  0.0  2.5  5.0  7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 60.0 65.0 70.0 75.0
> unique(sla$Position_m)
[1] 45 60 75 30 15  0
> unique(lai$Position_m)
[1]  0 10 20 30 40 50 60 70 NA

I guess just interpolate NPP to get positions we want?

careanderson commented 9 years ago

Yes, I think we'll have to.

bpbond commented 9 years ago

OK, thanks.