variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: snow_depth | code: thr | fields: level, ts, reading, type Sensor: uv_index | fields: unit, type, ts, lat Task: Retrieve reading from snow_depth that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066900
train
v2
Sensor network script: Node: rainfall | code: clr | fields: type, value, unit, ts Sensor: sunlight | fields: lon, unit, reading, depth Task: Retrieve lon from rainfall that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066901
train
v3
Sensor network script: Node: temperature | code: prt | fields: lon, type, ts, lat Sensor: wind_speed | fields: value, level, lat, type Task: Retrieve value from temperature with reading above the MAX(value) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066902
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lat, value, type, ts Sensor: rainfall | fields: lat, unit, type, value Task: Fetch lon from snow_depth that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066903
train
v2
Sensor network script: Node: lightning | code: clr | fields: reading, value, unit, ts Sensor: wind_speed | fields: value, ts, unit, type Task: Retrieve depth from lightning that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066904
train
v2
Sensor network script: Node: drought_index | code: thr | fields: reading, level, type, lon Sensor: uv_index | fields: ts, level, depth, qc Task: Get level from drought_index where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066905
train
v1
Sensor network script: Node: uv_index | code: mst | fields: value, lat, depth, qc Sensor: snow_depth | fields: qc, ts, value, lat Task: Fetch lon from uv_index where qc exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066906
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: value, ts, level, unit Sensor: snow_depth | fields: depth, value, qc, unit Task: Retrieve reading from wind_speed with depth above the SUM(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066907
train
v2
Sensor network script: Node: turbidity | code: ref | fields: ts, reading, value, level Sensor: air_quality | fields: level, unit, qc, lon Task: Retrieve value from turbidity that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066908
train
v2
Sensor network script: Node: dew_point | code: gst | fields: value, level, type, ts Sensor: temperature | fields: level, unit, reading, lat Task: Get reading from dew_point where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066909
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: type, unit, ts, lat Sensor: cloud_cover | fields: value, type, level, unit Task: Retrieve value from wind_speed that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066910
train
v3
Sensor network script: Node: dew_point | code: stn | fields: ts, qc, unit, type Sensor: visibility | fields: lat, type, level, lon Task: Get depth from dew_point where reading exceeds the maximum depth from visibility for the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066911
train
v2
Sensor network script: Node: drought_index | code: prt | fields: lon, reading, depth, type Sensor: visibility | fields: ts, qc, unit, value Task: Retrieve value from drought_index that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066912
train
v3
Sensor network script: Node: rainfall | code: prt | fields: value, lat, unit, lon Sensor: turbidity | fields: lon, unit, lat, qc Task: Fetch depth from rainfall where depth is greater than the maximum of depth in turbidity for matching type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066913
train
v1
Sensor network script: Node: uv_index | code: clr | fields: qc, reading, type, lat Sensor: dew_point | fields: reading, qc, value, type Task: Get level from uv_index where ts appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066914
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lon, qc, unit, level Sensor: uv_index | fields: value, unit, lat, type Task: Fetch value from cloud_cover that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066915
train
v2
Sensor network script: Node: drought_index | code: ref | fields: reading, lon, unit, depth Sensor: frost | fields: reading, type, depth, value Task: Retrieve lat from drought_index that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066916
train
v3
Sensor network script: Node: humidity | code: thr | fields: qc, depth, lon, type Sensor: drought_index | fields: qc, lat, value, lon Task: Retrieve level from humidity with depth above the SUM(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066917
train
v2
Sensor network script: Node: lightning | code: clr | fields: value, unit, lon, ts Sensor: rainfall | fields: qc, reading, value, level Task: Retrieve depth from lightning that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066918
train
v3
Sensor network script: Node: dew_point | code: stn | fields: qc, value, lat, reading Sensor: evaporation | fields: type, lon, depth, level Task: Fetch lon from dew_point where value is greater than the count of of value in evaporation for matching type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066919
train
v3
Sensor network script: Node: visibility | code: prt | fields: depth, reading, unit, value Sensor: sunlight | fields: type, lon, qc, value Task: Retrieve lat from visibility with depth above the MIN(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066920
train
v2
Sensor network script: Node: dew_point | code: gst | fields: ts, type, depth, lat Sensor: frost | fields: ts, value, reading, level Task: Fetch reading from dew_point that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066921
train
v2
Sensor network script: Node: temperature | code: mst | fields: lon, ts, unit, type Sensor: frost | fields: value, lat, level, depth Task: Get reading from temperature where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066922
train
v3
Sensor network script: Node: frost | code: clr | fields: type, level, reading, depth Sensor: snow_depth | fields: unit, qc, value, type Task: Get value from frost where reading exceeds the minimum reading from snow_depth for the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066923
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: reading, unit, lon, value Sensor: temperature | fields: lon, qc, depth, type Task: Retrieve lat from cloud_cover that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066924
train
v3
Sensor network script: Node: dew_point | code: clr | fields: lat, qc, value, unit Sensor: lightning | fields: level, qc, lon, lat Task: Retrieve lon from dew_point with value above the SUM(depth) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066925
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: qc, lon, type, depth Sensor: sunlight | fields: reading, qc, lat, depth Task: Get lon from wind_speed where depth exceeds the minimum value from sunlight for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066926
train
v2
Sensor network script: Node: drought_index | code: mst | fields: value, level, qc, depth Sensor: uv_index | fields: level, ts, qc, unit Task: Fetch value from drought_index that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066927
train
v2
Sensor network script: Node: uv_index | code: gst | fields: reading, value, ts, level Sensor: turbidity | fields: depth, unit, lat, reading Task: Retrieve reading from uv_index that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066928
train
v2
Sensor network script: Node: air_quality | code: mst | fields: lon, ts, reading, unit Sensor: wind_speed | fields: level, type, value, unit Task: Fetch depth from air_quality that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066929
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lat, reading, level, type Sensor: rainfall | fields: type, unit, reading, qc Task: Retrieve reading from uv_index whose ts is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066930
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: level, reading, ts, lat Sensor: dew_point | fields: depth, qc, type, value Task: Retrieve depth from soil_moisture that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066931
train
v2
Sensor network script: Node: humidity | code: gst | fields: level, depth, reading, unit Sensor: frost | fields: reading, unit, lat, value Task: Get lon from humidity where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066932
train
v2
Sensor network script: Node: rainfall | code: ref | fields: lat, lon, unit, reading Sensor: humidity | fields: depth, lon, level, lat Task: Fetch value from rainfall that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066933
train
v1
Sensor network script: Node: visibility | code: hub | fields: depth, qc, value, ts Sensor: drought_index | fields: value, ts, type, lon Task: Retrieve reading from visibility whose unit is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066934
train
v2
Sensor network script: Node: rainfall | code: thr | fields: reading, unit, qc, level Sensor: dew_point | fields: type, ts, qc, unit Task: Get depth from rainfall where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066935
train
v3
Sensor network script: Node: turbidity | code: ref | fields: type, lon, level, depth Sensor: frost | fields: lat, ts, reading, lon Task: Fetch reading from turbidity where reading is greater than the count of of value in frost for matching qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066936
train
v1
Sensor network script: Node: air_quality | code: clr | fields: lon, unit, value, reading Sensor: turbidity | fields: qc, lat, lon, reading Task: Fetch depth from air_quality where ts exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066937
train
v1
Sensor network script: Node: pressure | code: mst | fields: lon, depth, type, ts Sensor: cloud_cover | fields: type, lat, level, reading Task: Retrieve depth from pressure whose ts is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066938
train
v1
Sensor network script: Node: frost | code: gst | fields: unit, level, type, ts Sensor: air_quality | fields: ts, level, lon, value Task: Get depth from frost where ts appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066939
train
v1
Sensor network script: Node: drought_index | code: stn | fields: lon, reading, value, qc Sensor: pressure | fields: depth, qc, ts, lon Task: Get reading from drought_index where qc appears in pressure readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066940
train
v1
Sensor network script: Node: visibility | code: ref | fields: reading, lon, lat, value Sensor: air_quality | fields: lat, level, ts, value Task: Retrieve value from visibility whose depth is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066941
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: lon, qc, type, level Sensor: sunlight | fields: type, reading, lon, ts Task: Retrieve reading from soil_moisture with value above the COUNT(depth) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066942
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lon, reading, level, type Sensor: wind_speed | fields: type, unit, qc, level Task: Get reading from soil_moisture where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066943
train
v1
Sensor network script: Node: drought_index | code: stn | fields: level, value, reading, lon Sensor: turbidity | fields: type, reading, qc, ts Task: Get lon from drought_index where unit appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066944
train
v3
Sensor network script: Node: pressure | code: thr | fields: lon, lat, level, ts Sensor: wind_speed | fields: reading, depth, value, level Task: Fetch level from pressure where depth is greater than the count of of reading in wind_speed for matching ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066945
train
v2
Sensor network script: Node: rainfall | code: ref | fields: ts, qc, lat, lon Sensor: wind_speed | fields: level, depth, lon, reading Task: Retrieve lat from rainfall that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066946
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: qc, reading, level, type Sensor: temperature | fields: type, lon, lat, depth Task: Retrieve level from soil_moisture with value above the MAX(depth) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066947
train
v2
Sensor network script: Node: drought_index | code: clr | fields: depth, lat, level, value Sensor: turbidity | fields: lon, level, unit, lat Task: Retrieve depth from drought_index that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066948
train
v2
Sensor network script: Node: dew_point | code: thr | fields: qc, lat, level, ts Sensor: humidity | fields: ts, type, lon, level Task: Retrieve lon from dew_point that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066949
train
v1
Sensor network script: Node: uv_index | code: ref | fields: value, lat, reading, lon Sensor: air_quality | fields: qc, type, level, reading Task: Retrieve value from uv_index whose unit is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066950
train
v3
Sensor network script: Node: evaporation | code: clr | fields: lat, unit, type, value Sensor: uv_index | fields: lon, ts, qc, type Task: Fetch depth from evaporation where depth is greater than the count of of value in uv_index for matching qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066951
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lat, lon, value, qc Sensor: humidity | fields: depth, value, level, type Task: Retrieve depth from wind_speed that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066952
train
v1
Sensor network script: Node: dew_point | code: stn | fields: type, reading, lat, level Sensor: uv_index | fields: reading, lat, type, qc Task: Retrieve value from dew_point whose type is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066953
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lon, unit, type, qc Sensor: evaporation | fields: unit, type, lon, qc Task: Fetch lat from snow_depth where reading is greater than the total of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066954
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: qc, unit, level, lat Sensor: visibility | fields: unit, value, qc, lon Task: Retrieve reading from soil_moisture whose depth is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066955
train
v2
Sensor network script: Node: evaporation | code: clr | fields: value, unit, level, ts Sensor: wind_speed | fields: qc, level, ts, depth Task: Get level from evaporation where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066956
train
v3
Sensor network script: Node: drought_index | code: stn | fields: unit, level, ts, qc Sensor: wind_speed | fields: qc, ts, level, depth Task: Fetch depth from drought_index where depth is greater than the average of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066957
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: lat, type, depth, unit Sensor: evaporation | fields: level, lat, ts, qc Task: Fetch level from soil_moisture where value is greater than the count of of value in evaporation for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066958
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: unit, ts, lat, level Sensor: evaporation | fields: lat, qc, reading, level Task: Get depth from soil_moisture where value exceeds the count of reading from evaporation for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066959
train
v2
Sensor network script: Node: rainfall | code: mst | fields: qc, ts, level, lat Sensor: drought_index | fields: unit, type, qc, reading Task: Get lat from rainfall where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066960
train
v1
Sensor network script: Node: air_quality | code: ref | fields: reading, level, depth, type Sensor: temperature | fields: lat, depth, lon, unit Task: Get depth from air_quality where qc appears in temperature readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066961
train
v1
Sensor network script: Node: frost | code: gst | fields: unit, ts, lat, value Sensor: temperature | fields: reading, qc, ts, level Task: Retrieve level from frost whose depth is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066962
train
v1
Sensor network script: Node: frost | code: thr | fields: value, lat, reading, unit Sensor: soil_moisture | fields: lon, reading, value, type Task: Fetch reading from frost where unit exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066963
train
v2
Sensor network script: Node: sunlight | code: thr | fields: qc, reading, lon, level Sensor: snow_depth | fields: type, lat, value, unit Task: Fetch reading from sunlight that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066964
train
v1
Sensor network script: Node: uv_index | code: gst | fields: ts, depth, value, level Sensor: lightning | fields: value, reading, depth, ts Task: Retrieve value from uv_index whose qc is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066965
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: qc, lon, value, depth Sensor: temperature | fields: level, reading, lat, type Task: Retrieve lon from cloud_cover with reading above the COUNT(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066966
train
v1
Sensor network script: Node: dew_point | code: clr | fields: qc, lat, ts, lon Sensor: wind_speed | fields: qc, lon, reading, level Task: Fetch lat from dew_point where ts exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066967
train
v2
Sensor network script: Node: turbidity | code: stn | fields: lon, unit, level, qc Sensor: sunlight | fields: depth, ts, level, type Task: Retrieve reading from turbidity that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066968
train
v1
Sensor network script: Node: frost | code: mst | fields: qc, depth, type, lon Sensor: uv_index | fields: reading, depth, unit, value Task: Fetch lon from frost where qc exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066969
train
v3
Sensor network script: Node: temperature | code: mst | fields: depth, level, lon, reading Sensor: pressure | fields: qc, value, type, unit Task: Fetch level from temperature where reading is greater than the average of reading in pressure for matching ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066970
train
v3
Sensor network script: Node: sunlight | code: stn | fields: depth, lon, type, qc Sensor: soil_moisture | fields: depth, qc, type, value Task: Get depth from sunlight where reading exceeds the total reading from soil_moisture for the same qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066971
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: depth, qc, level, type Sensor: drought_index | fields: depth, value, reading, unit Task: Get reading from snow_depth where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066972
train
v1
Sensor network script: Node: dew_point | code: clr | fields: type, level, reading, unit Sensor: lightning | fields: lon, type, qc, reading Task: Fetch level from dew_point where qc exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066973
train
v2
Sensor network script: Node: dew_point | code: thr | fields: ts, level, qc, depth Sensor: sunlight | fields: value, reading, lat, qc Task: Retrieve lat from dew_point that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066974
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: lon, reading, value, lat Sensor: humidity | fields: ts, level, lat, lon Task: Get depth from wind_speed where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066975
train
v1
Sensor network script: Node: drought_index | code: mst | fields: value, lon, level, lat Sensor: sunlight | fields: type, value, level, reading Task: Get lon from drought_index where depth appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066976
train
v2
Sensor network script: Node: drought_index | code: prt | fields: qc, level, lat, reading Sensor: visibility | fields: reading, lon, type, depth Task: Get level from drought_index where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066977
train
v2
Sensor network script: Node: pressure | code: hub | fields: unit, depth, type, lat Sensor: cloud_cover | fields: level, qc, depth, type Task: Get level from pressure where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066978
train
v1
Sensor network script: Node: air_quality | code: mst | fields: reading, qc, lon, depth Sensor: drought_index | fields: qc, reading, lat, type Task: Get lon from air_quality where unit appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066979
train
v3
Sensor network script: Node: air_quality | code: stn | fields: value, reading, unit, lon Sensor: uv_index | fields: lat, unit, type, reading Task: Fetch level from air_quality where reading is greater than the count of of depth in uv_index for matching qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066980
train
v1
Sensor network script: Node: turbidity | code: ref | fields: lon, unit, lat, reading Sensor: rainfall | fields: unit, lat, depth, type Task: Fetch lon from turbidity where type exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066981
train
v2
Sensor network script: Node: sunlight | code: gst | fields: ts, value, level, lon Sensor: drought_index | fields: unit, level, value, depth Task: Retrieve depth from sunlight that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066982
train
v3
Sensor network script: Node: pressure | code: clr | fields: type, lat, qc, reading Sensor: dew_point | fields: ts, reading, lat, qc Task: Retrieve lat from pressure with depth above the MIN(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066983
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: depth, value, unit, reading Sensor: turbidity | fields: reading, depth, qc, ts Task: Fetch lat from cloud_cover where qc exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066984
train
v2
Sensor network script: Node: visibility | code: gst | fields: lon, value, lat, reading Sensor: temperature | fields: value, lon, unit, qc Task: Get lat from visibility where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066985
train
v1
Sensor network script: Node: visibility | code: clr | fields: lon, type, unit, depth Sensor: soil_moisture | fields: unit, value, depth, qc Task: Retrieve reading from visibility whose qc is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066986
train
v1
Sensor network script: Node: sunlight | code: ref | fields: ts, level, reading, lon Sensor: air_quality | fields: value, depth, level, reading Task: Fetch value from sunlight where ts exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066987
train
v2
Sensor network script: Node: air_quality | code: stn | fields: depth, value, level, ts Sensor: dew_point | fields: depth, type, lon, lat Task: Retrieve reading from air_quality that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066988
train
v1
Sensor network script: Node: sunlight | code: clr | fields: type, level, lon, unit Sensor: lightning | fields: type, depth, ts, lon Task: Retrieve value from sunlight whose qc is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066989
train
v2
Sensor network script: Node: humidity | code: gst | fields: ts, unit, depth, reading Sensor: evaporation | fields: value, type, level, ts Task: Get value from humidity where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066990
train
v3
Sensor network script: Node: visibility | code: gst | fields: level, ts, qc, lat Sensor: evaporation | fields: qc, unit, lat, reading Task: Retrieve depth from visibility with reading above the MAX(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066991
train
v2
Sensor network script: Node: dew_point | code: thr | fields: ts, lat, qc, level Sensor: air_quality | fields: lon, depth, lat, unit Task: Fetch lat from dew_point that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066992
train
v2
Sensor network script: Node: humidity | code: clr | fields: type, reading, level, lat Sensor: sunlight | fields: unit, type, level, ts Task: Retrieve value from humidity that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066993
train
v1
Sensor network script: Node: rainfall | code: hub | fields: depth, unit, level, lat Sensor: uv_index | fields: type, level, ts, unit Task: Fetch reading from rainfall where ts exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066994
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: type, ts, level, lon Sensor: rainfall | fields: reading, level, qc, lat Task: Retrieve level from wind_speed whose depth is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066995
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, lat, reading, type Sensor: lightning | fields: type, qc, unit, lat Task: Fetch lat from wind_speed that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066996
train
v2
Sensor network script: Node: temperature | code: hub | fields: level, value, lon, type Sensor: dew_point | fields: lat, unit, lon, qc Task: Retrieve reading from temperature that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066997
train
v1
Sensor network script: Node: evaporation | code: ref | fields: unit, qc, depth, value Sensor: rainfall | fields: type, depth, qc, reading Task: Fetch reading from evaporation where ts exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066998
train
v2
Sensor network script: Node: humidity | code: prt | fields: value, ts, lon, depth Sensor: lightning | fields: depth, qc, value, reading Task: Retrieve value from humidity that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066999
train