variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: visibility | code: gst | fields: lon, depth, lat, unit Sensor: air_quality | fields: qc, lat, value, type Task: Retrieve value from visibility with reading above the COUNT(depth) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015800
train
v2
Sensor network script: Node: lightning | code: mst | fields: ts, depth, reading, lat Sensor: air_quality | fields: lon, ts, lat, type Task: Get depth from lightning where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015801
train
v2
Sensor network script: Node: dew_point | code: prt | fields: type, lon, depth, level Sensor: drought_index | fields: lat, type, qc, level Task: Fetch lat from dew_point that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015802
train
v1
Sensor network script: Node: evaporation | code: thr | fields: unit, lon, lat, level Sensor: turbidity | fields: reading, level, value, type Task: Fetch lat from evaporation where qc exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015803
train
v2
Sensor network script: Node: dew_point | code: hub | fields: lat, ts, value, level Sensor: pressure | fields: value, reading, qc, depth Task: Retrieve level from dew_point that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015804
train
v1
Sensor network script: Node: frost | code: stn | fields: depth, value, qc, unit Sensor: rainfall | fields: ts, value, type, unit Task: Fetch reading from frost where depth exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015805
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: reading, qc, lat, type Sensor: air_quality | fields: type, ts, level, value Task: Fetch value from cloud_cover that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015806
train
v2
Sensor network script: Node: uv_index | code: stn | fields: ts, lat, reading, type Sensor: wind_speed | fields: lat, depth, lon, reading Task: Retrieve reading from uv_index that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015807
train
v2
Sensor network script: Node: sunlight | code: thr | fields: ts, value, qc, unit Sensor: wind_speed | fields: reading, depth, qc, ts Task: Get lat from sunlight where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015808
train
v2
Sensor network script: Node: visibility | code: gst | fields: level, unit, value, lon Sensor: sunlight | fields: value, lat, depth, unit Task: Fetch lat from visibility that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015809
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: reading, lon, ts, depth Sensor: temperature | fields: qc, type, lat, reading Task: Retrieve lon from wind_speed that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015810
train
v3
Sensor network script: Node: frost | code: prt | fields: ts, type, unit, level Sensor: cloud_cover | fields: qc, type, unit, ts Task: Get depth from frost where reading exceeds the minimum reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015811
train
v1
Sensor network script: Node: sunlight | code: thr | fields: type, lat, value, unit Sensor: visibility | fields: reading, unit, lat, lon Task: Fetch depth from sunlight where ts exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015812
train
v3
Sensor network script: Node: turbidity | code: stn | fields: value, lon, qc, lat Sensor: pressure | fields: lat, lon, level, qc Task: Get reading from turbidity where reading exceeds the maximum value from pressure for the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015813
train
v3
Sensor network script: Node: rainfall | code: stn | fields: level, depth, value, lat Sensor: soil_moisture | fields: lon, lat, type, level Task: Retrieve reading from rainfall with value above the AVG(depth) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015814
train
v1
Sensor network script: Node: evaporation | code: hub | fields: value, lat, lon, ts Sensor: air_quality | fields: lat, ts, reading, value Task: Get depth from evaporation where qc appears in air_quality readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015815
train
v1
Sensor network script: Node: sunlight | code: gst | fields: qc, reading, ts, type Sensor: frost | fields: lon, reading, type, qc Task: Retrieve lon from sunlight whose depth is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015816
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: lat, type, value, qc Sensor: air_quality | fields: lat, lon, qc, level Task: Retrieve reading from cloud_cover with value above the MIN(reading) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015817
train
v2
Sensor network script: Node: humidity | code: clr | fields: reading, value, depth, lat Sensor: lightning | fields: reading, value, type, ts Task: Fetch lat from humidity that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015818
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: depth, unit, type, qc Sensor: snow_depth | fields: value, level, qc, depth Task: Fetch lat from soil_moisture that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015819
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: qc, type, unit, lat Sensor: frost | fields: depth, value, type, lat Task: Get reading from cloud_cover where depth appears in frost readings with matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015820
train
v1
Sensor network script: Node: evaporation | code: clr | fields: lon, reading, lat, qc Sensor: cloud_cover | fields: level, lat, type, qc Task: Retrieve reading from evaporation whose depth is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015821
train
v2
Sensor network script: Node: sunlight | code: ref | fields: reading, qc, level, depth Sensor: pressure | fields: value, qc, ts, type Task: Retrieve value from sunlight that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015822
train
v2
Sensor network script: Node: turbidity | code: stn | fields: depth, level, unit, reading Sensor: drought_index | fields: unit, ts, value, reading Task: Get level from turbidity where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015823
train
v3
Sensor network script: Node: sunlight | code: stn | fields: ts, lon, level, value Sensor: evaporation | fields: qc, lat, ts, value Task: Get level from sunlight where reading exceeds the average value from evaporation for the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015824
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: unit, value, ts, lat Sensor: snow_depth | fields: level, ts, reading, type Task: Fetch value from cloud_cover that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015825
train
v1
Sensor network script: Node: visibility | code: prt | fields: depth, reading, qc, level Sensor: sunlight | fields: value, depth, unit, type Task: Retrieve reading from visibility whose unit is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015826
train
v1
Sensor network script: Node: humidity | code: ref | fields: lon, depth, ts, lat Sensor: rainfall | fields: type, value, unit, depth Task: Fetch lat from humidity where qc exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015827
train
v2
Sensor network script: Node: frost | code: hub | fields: ts, value, unit, lon Sensor: humidity | fields: ts, depth, value, type Task: Fetch depth from frost that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015828
train
v2
Sensor network script: Node: lightning | code: thr | fields: type, qc, lat, unit Sensor: dew_point | fields: unit, ts, lon, depth Task: Retrieve reading from lightning that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015829
train
v3
Sensor network script: Node: visibility | code: thr | fields: qc, ts, value, level Sensor: frost | fields: qc, lat, type, lon Task: Fetch depth from visibility where value is greater than the total of value in frost for matching unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015830
train
v1
Sensor network script: Node: frost | code: mst | fields: level, qc, ts, depth Sensor: visibility | fields: reading, level, ts, unit Task: Fetch reading from frost where type exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015831
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: unit, reading, depth, ts Sensor: visibility | fields: lat, depth, level, value Task: Get reading from snow_depth where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015832
train
v1
Sensor network script: Node: lightning | code: ref | fields: type, lat, qc, unit Sensor: sunlight | fields: qc, reading, value, depth Task: Retrieve depth from lightning whose unit is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015833
train
v2
Sensor network script: Node: temperature | code: stn | fields: lon, ts, qc, level Sensor: dew_point | fields: ts, lat, unit, type Task: Get reading from temperature where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015834
train
v1
Sensor network script: Node: turbidity | code: thr | fields: value, ts, depth, type Sensor: soil_moisture | fields: type, depth, level, reading Task: Fetch value from turbidity where depth exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015835
train
v1
Sensor network script: Node: drought_index | code: mst | fields: qc, lat, unit, depth Sensor: visibility | fields: lat, lon, value, type Task: Fetch depth from drought_index where type exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015836
train
v1
Sensor network script: Node: drought_index | code: mst | fields: reading, ts, depth, lat Sensor: cloud_cover | fields: value, lon, type, depth Task: Fetch reading from drought_index where ts exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015837
train
v1
Sensor network script: Node: air_quality | code: clr | fields: qc, type, unit, value Sensor: dew_point | fields: ts, qc, level, value Task: Get reading from air_quality where qc appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015838
train
v2
Sensor network script: Node: dew_point | code: mst | fields: ts, unit, depth, level Sensor: evaporation | fields: value, depth, lat, reading Task: Get reading from dew_point where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015839
train
v3
Sensor network script: Node: sunlight | code: thr | fields: lat, ts, lon, level Sensor: visibility | fields: lon, qc, depth, type Task: Retrieve depth from sunlight with value above the AVG(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015840
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: value, type, lat, ts Sensor: cloud_cover | fields: lon, level, lat, ts Task: Retrieve depth from snow_depth with depth above the AVG(value) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015841
train
v2
Sensor network script: Node: evaporation | code: hub | fields: type, ts, lon, level Sensor: lightning | fields: lat, type, ts, lon Task: Fetch reading from evaporation that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015842
train
v1
Sensor network script: Node: temperature | code: clr | fields: unit, level, qc, depth Sensor: drought_index | fields: ts, lon, depth, type Task: Get value from temperature where ts appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015843
train
v1
Sensor network script: Node: drought_index | code: hub | fields: unit, lat, ts, type Sensor: evaporation | fields: lon, reading, level, lat Task: Fetch depth from drought_index where ts exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015844
train
v1
Sensor network script: Node: temperature | code: clr | fields: unit, value, ts, lon Sensor: lightning | fields: lon, unit, type, depth Task: Get value from temperature where depth appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015845
train
v2
Sensor network script: Node: humidity | code: thr | fields: unit, ts, qc, type Sensor: lightning | fields: value, unit, depth, lat Task: Get lat from humidity where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015846
train
v1
Sensor network script: Node: lightning | code: thr | fields: type, depth, lat, value Sensor: dew_point | fields: level, depth, ts, lon Task: Fetch reading from lightning where depth exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015847
train
v3
Sensor network script: Node: rainfall | code: clr | fields: level, lon, ts, unit Sensor: wind_speed | fields: depth, level, lat, unit Task: Get value from rainfall where reading exceeds the minimum depth from wind_speed for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015848
train
v1
Sensor network script: Node: lightning | code: thr | fields: ts, value, level, qc Sensor: wind_speed | fields: reading, level, ts, value Task: Fetch reading from lightning where qc exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015849
train
v3
Sensor network script: Node: sunlight | code: prt | fields: reading, value, ts, unit Sensor: pressure | fields: lat, lon, depth, unit Task: Fetch reading from sunlight where value is greater than the average of depth in pressure for matching type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015850
train
v1
Sensor network script: Node: rainfall | code: mst | fields: qc, unit, depth, value Sensor: air_quality | fields: unit, level, lon, qc Task: Retrieve lat from rainfall whose ts is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015851
train
v3
Sensor network script: Node: turbidity | code: clr | fields: lat, qc, lon, unit Sensor: sunlight | fields: ts, lat, level, reading Task: Fetch depth from turbidity where depth is greater than the total of depth in sunlight for matching unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015852
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: value, ts, type, level Sensor: frost | fields: type, reading, level, ts Task: Retrieve value from snow_depth with value above the COUNT(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015853
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lat, level, qc, reading Sensor: snow_depth | fields: type, level, qc, value Task: Get lon from rainfall where value exceeds the maximum reading from snow_depth for the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015854
train
v1
Sensor network script: Node: evaporation | code: mst | fields: reading, lat, qc, type Sensor: dew_point | fields: reading, unit, value, depth Task: Fetch value from evaporation where depth exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015855
train
v3
Sensor network script: Node: pressure | code: prt | fields: depth, level, ts, type Sensor: lightning | fields: type, lon, level, unit Task: Retrieve depth from pressure with reading above the COUNT(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015856
train
v3
Sensor network script: Node: turbidity | code: clr | fields: depth, ts, lon, level Sensor: uv_index | fields: type, reading, lon, unit Task: Get depth from turbidity where value exceeds the maximum reading from uv_index for the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015857
train
v2
Sensor network script: Node: evaporation | code: stn | fields: lat, qc, value, lon Sensor: soil_moisture | fields: type, value, qc, level Task: Get lat from evaporation where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015858
train
v2
Sensor network script: Node: turbidity | code: gst | fields: ts, lon, lat, depth Sensor: evaporation | fields: reading, ts, level, lat Task: Retrieve reading from turbidity that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015859
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: unit, lat, value, qc Sensor: humidity | fields: reading, type, unit, lon Task: Get level from cloud_cover where reading exceeds the count of reading from humidity for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015860
train
v1
Sensor network script: Node: pressure | code: ref | fields: lon, lat, level, type Sensor: air_quality | fields: value, lon, ts, type Task: Retrieve value from pressure whose depth is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "pressure", "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_015861
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: depth, lat, type, level Sensor: pressure | fields: unit, value, level, ts Task: Fetch lat from soil_moisture where value is greater than the count of of reading in pressure for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015862
train
v1
Sensor network script: Node: lightning | code: thr | fields: qc, unit, level, value Sensor: visibility | fields: reading, lon, lat, type Task: Fetch lon from lightning where ts exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015863
train
v2
Sensor network script: Node: sunlight | code: hub | fields: lon, lat, type, reading Sensor: evaporation | fields: level, lat, unit, reading Task: Retrieve reading from sunlight that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015864
train
v2
Sensor network script: Node: lightning | code: prt | fields: reading, lat, level, value Sensor: drought_index | fields: reading, lon, type, qc Task: Fetch level from lightning that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015865
train
v3
Sensor network script: Node: rainfall | code: gst | fields: type, unit, depth, value Sensor: temperature | fields: lat, unit, qc, type Task: Fetch value from rainfall where depth is greater than the total of value in temperature for matching depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015866
train
v1
Sensor network script: Node: visibility | code: clr | fields: unit, lon, level, depth Sensor: rainfall | fields: lat, ts, level, type Task: Retrieve lon from visibility whose type is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015867
train
v2
Sensor network script: Node: drought_index | code: mst | fields: reading, level, unit, qc Sensor: uv_index | fields: reading, value, qc, level Task: Fetch depth from drought_index that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015868
train
v2
Sensor network script: Node: sunlight | code: hub | fields: reading, value, ts, unit Sensor: air_quality | fields: level, value, unit, type Task: Fetch value from sunlight that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015869
train
v3
Sensor network script: Node: temperature | code: gst | fields: unit, lat, reading, ts Sensor: turbidity | fields: depth, reading, unit, type Task: Get lat from temperature where depth exceeds the average depth from turbidity for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015870
train
v1
Sensor network script: Node: sunlight | code: prt | fields: qc, lat, lon, ts Sensor: frost | fields: lat, unit, reading, ts Task: Get depth from sunlight where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015871
train
v3
Sensor network script: Node: sunlight | code: prt | fields: ts, level, reading, lon Sensor: uv_index | fields: lat, value, qc, level Task: Retrieve depth from sunlight with reading above the MIN(value) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015872
train
v2
Sensor network script: Node: lightning | code: clr | fields: reading, depth, value, unit Sensor: pressure | fields: depth, qc, reading, level Task: Retrieve lat from lightning that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015873
train
v1
Sensor network script: Node: frost | code: clr | fields: value, ts, type, level Sensor: wind_speed | fields: lat, reading, value, level Task: Get lat from frost where ts appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015874
train
v3
Sensor network script: Node: frost | code: gst | fields: lon, lat, value, depth Sensor: visibility | fields: unit, qc, depth, ts Task: Fetch reading from frost where value is greater than the average of reading in visibility for matching ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015875
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: depth, ts, reading, value Sensor: sunlight | fields: level, ts, type, qc Task: Fetch lat from cloud_cover where depth is greater than the count of of reading in sunlight for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015876
train
v3
Sensor network script: Node: visibility | code: clr | fields: ts, lon, qc, depth Sensor: frost | fields: level, type, depth, unit Task: Retrieve reading from visibility with depth above the MAX(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015877
train
v1
Sensor network script: Node: temperature | code: prt | fields: reading, lon, type, unit Sensor: soil_moisture | fields: depth, value, qc, lon Task: Retrieve level from temperature whose ts is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015878
train
v3
Sensor network script: Node: sunlight | code: hub | fields: qc, ts, lat, level Sensor: soil_moisture | fields: qc, depth, level, reading Task: Retrieve value from sunlight with reading above the MIN(value) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015879
train
v2
Sensor network script: Node: dew_point | code: stn | fields: lat, value, depth, qc Sensor: uv_index | fields: level, qc, reading, depth Task: Retrieve lat from dew_point that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015880
train
v2
Sensor network script: Node: visibility | code: clr | fields: ts, unit, lat, level Sensor: turbidity | fields: lon, unit, type, lat Task: Retrieve lon from visibility that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015881
train
v2
Sensor network script: Node: sunlight | code: thr | fields: value, lon, depth, lat Sensor: pressure | fields: lon, type, depth, unit Task: Fetch lat from sunlight that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015882
train
v3
Sensor network script: Node: sunlight | code: stn | fields: reading, lon, value, unit Sensor: turbidity | fields: level, lat, lon, reading Task: Fetch lat from sunlight where value is greater than the maximum of reading in turbidity for matching unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015883
train
v1
Sensor network script: Node: turbidity | code: gst | fields: ts, value, lon, unit Sensor: visibility | fields: type, lat, ts, qc Task: Get lon from turbidity where unit appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015884
train
v2
Sensor network script: Node: evaporation | code: stn | fields: unit, qc, lon, depth Sensor: frost | fields: ts, lat, depth, level Task: Fetch depth from evaporation that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015885
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, value, qc, lon Sensor: lightning | fields: depth, level, lat, unit Task: Fetch level from pressure that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015886
train
v1
Sensor network script: Node: turbidity | code: hub | fields: depth, ts, level, type Sensor: soil_moisture | fields: lat, qc, depth, ts Task: Get level from turbidity where type appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015887
train
v3
Sensor network script: Node: rainfall | code: ref | fields: reading, lon, type, unit Sensor: cloud_cover | fields: qc, value, type, reading Task: Retrieve lat from rainfall with value above the MIN(value) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015888
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: qc, ts, unit, level Sensor: frost | fields: type, lat, reading, lon Task: Retrieve reading from cloud_cover that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015889
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: lat, lon, ts, reading Sensor: dew_point | fields: type, ts, lon, depth Task: Fetch lat from cloud_cover where type exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015890
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, type, lon, qc Sensor: evaporation | fields: reading, depth, value, qc Task: Fetch depth from visibility that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015891
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: unit, value, level, lon Sensor: sunlight | fields: unit, lat, type, value Task: Retrieve value from soil_moisture that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015892
train
v1
Sensor network script: Node: lightning | code: stn | fields: depth, lon, reading, type Sensor: dew_point | fields: ts, value, type, lat Task: Get lat from lightning where qc appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015893
train
v3
Sensor network script: Node: lightning | code: ref | fields: qc, depth, unit, lat Sensor: pressure | fields: level, ts, depth, value Task: Get level from lightning where value exceeds the minimum value from pressure for the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015894
train
v1
Sensor network script: Node: temperature | code: clr | fields: depth, reading, level, ts Sensor: air_quality | fields: level, unit, value, ts Task: Retrieve depth from temperature whose qc is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015895
train
v1
Sensor network script: Node: turbidity | code: hub | fields: level, depth, unit, type Sensor: lightning | fields: value, unit, reading, type Task: Fetch lon from turbidity where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015896
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: reading, lat, unit, level Sensor: lightning | fields: unit, lat, ts, type Task: Retrieve value from wind_speed whose unit is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015897
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lon, value, ts, level Sensor: temperature | fields: lat, qc, ts, level Task: Get lat from cloud_cover where reading exceeds the total value from temperature for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015898
train
v3
Sensor network script: Node: rainfall | code: prt | fields: type, level, qc, depth Sensor: pressure | fields: lat, reading, depth, value Task: Get lon from rainfall where reading exceeds the total value from pressure for the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015899
train