Reference the value of an Input on the current site:
Inputs.<Inputname>
e.g. Inputs.Rain Fall
Reference the value of an Input on another site:
Outposts.<Sitename>.Inputs.<Inputname>
e.g. Outposts.Station A.Inputs.Temperature
Reference the DateTime of the current data point:
LogTime
Reference the value of a Custom Site Field on the current site:
OutpostFields.<Fieldname>
Create Combined Inputs
Return Inputs.<Input1> + Inputs.<Input2> + Inputs.<Input3>
e.g. Return
Inputs.Soil 10cm + Inputs.Soil.20cm + Inputs.Soil.30cm
Create Data If-Else
e.g.
If
Outpost.Station A.Temperature < 10
Then
Return
Inputs.Sensor 1
Else
Return
Inputs.Sensor 2
End
If
e.g.
If
LogTime.Hour = 10
Then
Return
Inputs.Sensor 1
Else
Return
0
End
If