variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: sunlight | code: gst | fields: ts, depth, level, value Sensor: soil_moisture | fields: reading, lon, ts, value Task: Get reading from sunlight where unit appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008500
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, qc, value, lon Sensor: rainfall | fields: depth, level, unit, ts Task: Retrieve level from visibility that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008501
train
v3
Sensor network script: Node: temperature | code: gst | fields: depth, type, unit, qc Sensor: visibility | fields: unit, qc, value, lat Task: Get value from temperature where value exceeds the average depth from visibility for the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008502
train
v3
Sensor network script: Node: drought_index | code: hub | fields: depth, unit, value, ts Sensor: visibility | fields: unit, level, depth, value Task: Retrieve value from drought_index with depth above the AVG(value) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008503
train
v2
Sensor network script: Node: uv_index | code: gst | fields: depth, reading, level, lat Sensor: dew_point | fields: lat, lon, reading, level Task: Get lat from uv_index where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008504
train
v2
Sensor network script: Node: air_quality | code: mst | fields: value, qc, depth, level Sensor: visibility | fields: value, depth, lat, reading Task: Fetch lon from air_quality that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008505
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: qc, type, unit, depth Sensor: air_quality | fields: lat, value, ts, level Task: Retrieve reading from wind_speed that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008506
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: depth, unit, lat, qc Sensor: air_quality | fields: ts, value, lon, unit Task: Fetch lat from cloud_cover that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008507
train
v2
Sensor network script: Node: turbidity | code: ref | fields: qc, lon, ts, reading Sensor: soil_moisture | fields: lon, unit, qc, ts Task: Retrieve lat from turbidity that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008508
train
v1
Sensor network script: Node: sunlight | code: stn | fields: type, level, lon, lat Sensor: turbidity | fields: ts, depth, qc, type Task: Retrieve value from sunlight whose ts is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008509
train
v2
Sensor network script: Node: humidity | code: gst | fields: value, lat, level, lon Sensor: dew_point | fields: depth, reading, lon, unit Task: Fetch lon from humidity that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008510
train
v2
Sensor network script: Node: air_quality | code: gst | fields: qc, type, reading, level Sensor: drought_index | fields: reading, lon, qc, unit Task: Retrieve reading from air_quality that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008511
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: unit, lon, qc, lat Sensor: dew_point | fields: qc, lat, unit, type Task: Retrieve reading from cloud_cover that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008512
train
v2
Sensor network script: Node: humidity | code: gst | fields: ts, type, unit, level Sensor: air_quality | fields: lon, ts, type, value Task: Retrieve level from humidity that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008513
train
v2
Sensor network script: Node: uv_index | code: prt | fields: qc, reading, level, lat Sensor: pressure | fields: depth, qc, level, type Task: Fetch lon from uv_index that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008514
train
v3
Sensor network script: Node: uv_index | code: ref | fields: ts, value, qc, depth Sensor: frost | fields: qc, ts, level, lon Task: Get lat from uv_index where value exceeds the count of reading from frost for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008515
train
v2
Sensor network script: Node: air_quality | code: hub | fields: type, reading, depth, unit Sensor: cloud_cover | fields: reading, value, depth, type Task: Fetch lon from air_quality that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008516
train
v2
Sensor network script: Node: pressure | code: thr | fields: lon, unit, depth, qc Sensor: humidity | fields: lon, lat, value, reading Task: Get depth from pressure where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "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_008517
train
v1
Sensor network script: Node: lightning | code: stn | fields: ts, depth, qc, reading Sensor: turbidity | fields: ts, reading, unit, depth Task: Fetch depth from lightning where unit exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008518
train
v3
Sensor network script: Node: air_quality | code: clr | fields: level, unit, depth, lat Sensor: humidity | fields: unit, value, level, lon Task: Fetch value from air_quality where depth is greater than the minimum of value in humidity for matching type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008519
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: qc, depth, unit, value Sensor: turbidity | fields: reading, level, value, lat Task: Fetch lon from wind_speed that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008520
train
v3
Sensor network script: Node: rainfall | code: gst | fields: ts, lat, level, value Sensor: air_quality | fields: depth, ts, type, value Task: Retrieve reading from rainfall with value above the MIN(reading) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008521
train
v3
Sensor network script: Node: dew_point | code: clr | fields: qc, lat, value, type Sensor: air_quality | fields: value, level, lon, lat Task: Get reading from dew_point where value exceeds the minimum depth from air_quality for the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008522
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: lon, type, depth, ts Sensor: frost | fields: type, level, reading, value Task: Retrieve lat from wind_speed whose depth is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008523
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: reading, level, unit, qc Sensor: pressure | fields: depth, lon, unit, value Task: Retrieve reading from wind_speed with reading above the MAX(value) of pressure readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008524
train
v1
Sensor network script: Node: pressure | code: mst | fields: ts, lon, reading, lat Sensor: turbidity | fields: reading, depth, ts, value Task: Fetch level from pressure where depth exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008525
train
v1
Sensor network script: Node: evaporation | code: thr | fields: reading, lon, ts, qc Sensor: humidity | fields: value, ts, reading, lat Task: Fetch reading from evaporation where ts exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008526
train
v3
Sensor network script: Node: drought_index | code: prt | fields: level, depth, type, unit Sensor: dew_point | fields: reading, level, unit, type Task: Get value from drought_index where value exceeds the average depth from dew_point for the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008527
train
v3
Sensor network script: Node: turbidity | code: gst | fields: lon, level, reading, type Sensor: lightning | fields: lon, lat, reading, ts Task: Get level from turbidity where depth exceeds the minimum reading from lightning for the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008528
train
v1
Sensor network script: Node: rainfall | code: prt | fields: type, reading, lat, level Sensor: evaporation | fields: lat, level, value, qc Task: Get reading from rainfall where unit appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008529
train
v1
Sensor network script: Node: drought_index | code: stn | fields: depth, lat, value, ts Sensor: humidity | fields: lon, reading, depth, type Task: Retrieve lon from drought_index whose qc is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008530
train
v2
Sensor network script: Node: evaporation | code: stn | fields: depth, ts, level, unit Sensor: cloud_cover | fields: unit, value, lat, reading Task: Get lon from evaporation where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008531
train
v2
Sensor network script: Node: evaporation | code: stn | fields: ts, unit, lat, value Sensor: temperature | fields: type, value, depth, reading Task: Fetch value from evaporation that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008532
train
v2
Sensor network script: Node: frost | code: clr | fields: reading, unit, value, ts Sensor: sunlight | fields: reading, qc, lat, value Task: Fetch lat from frost that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008533
train
v2
Sensor network script: Node: humidity | code: stn | fields: lon, qc, level, value Sensor: turbidity | fields: value, lat, depth, ts Task: Retrieve lon from humidity that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008534
train
v2
Sensor network script: Node: pressure | code: clr | fields: reading, unit, level, depth Sensor: air_quality | fields: value, qc, depth, lon Task: Get depth from pressure where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008535
train
v3
Sensor network script: Node: dew_point | code: ref | fields: level, lon, depth, lat Sensor: visibility | fields: lat, reading, lon, value Task: Get level from dew_point where reading exceeds the average depth from visibility for the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008536
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, lat, reading, value Sensor: drought_index | fields: ts, unit, depth, qc Task: Fetch lon from soil_moisture where depth is greater than the count of of value in drought_index for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008537
train
v1
Sensor network script: Node: humidity | code: prt | fields: ts, qc, depth, reading Sensor: soil_moisture | fields: level, unit, qc, type Task: Fetch depth from humidity where unit exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008538
train
v1
Sensor network script: Node: lightning | code: hub | fields: depth, value, unit, level Sensor: dew_point | fields: unit, ts, level, reading Task: Fetch lat from lightning where qc exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008539
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: depth, lon, level, qc Sensor: drought_index | fields: reading, lat, ts, type Task: Fetch level from soil_moisture where unit exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008540
train
v3
Sensor network script: Node: visibility | code: mst | fields: type, ts, level, qc Sensor: lightning | fields: depth, value, lat, ts Task: Get value from visibility where value exceeds the minimum reading from lightning for the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008541
train
v1
Sensor network script: Node: turbidity | code: clr | fields: value, lon, qc, unit Sensor: sunlight | fields: reading, ts, unit, lon Task: Get level from turbidity where qc appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008542
train
v1
Sensor network script: Node: temperature | code: prt | fields: depth, qc, value, level Sensor: humidity | fields: reading, unit, value, type Task: Get lat from temperature where depth appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008543
train
v2
Sensor network script: Node: dew_point | code: gst | fields: depth, ts, qc, value Sensor: uv_index | fields: lon, ts, lat, unit Task: Fetch reading from dew_point that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008544
train
v1
Sensor network script: Node: visibility | code: thr | fields: ts, unit, qc, depth Sensor: turbidity | fields: ts, type, qc, level Task: Get lat from visibility where ts appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008545
train
v2
Sensor network script: Node: temperature | code: hub | fields: lon, type, depth, level Sensor: drought_index | fields: level, ts, type, lat Task: Retrieve value from temperature that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008546
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, ts, reading, qc Sensor: turbidity | fields: lon, ts, reading, type Task: Get depth from visibility where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008547
train
v3
Sensor network script: Node: pressure | code: stn | fields: value, reading, lat, qc Sensor: snow_depth | fields: unit, depth, level, type Task: Retrieve level from pressure with depth above the COUNT(depth) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008548
train
v1
Sensor network script: Node: evaporation | code: prt | fields: depth, level, reading, qc Sensor: humidity | fields: value, lat, unit, type Task: Get level from evaporation where depth appears in humidity readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008549
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: ts, qc, depth, level Sensor: drought_index | fields: value, reading, qc, lat Task: Get level from wind_speed where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008550
train
v3
Sensor network script: Node: drought_index | code: gst | fields: qc, depth, value, lon Sensor: sunlight | fields: reading, lat, ts, lon Task: Fetch lat from drought_index where depth is greater than the average of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008551
train
v3
Sensor network script: Node: visibility | code: prt | fields: lon, lat, level, type Sensor: humidity | fields: depth, qc, lat, unit Task: Retrieve value from visibility with value above the MAX(depth) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008552
train
v3
Sensor network script: Node: turbidity | code: thr | fields: unit, lon, level, type Sensor: wind_speed | fields: lon, reading, ts, qc Task: Retrieve reading from turbidity with depth above the MIN(reading) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008553
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: depth, qc, unit, reading Sensor: lightning | fields: value, type, reading, level Task: Retrieve value from wind_speed with depth above the SUM(reading) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008554
train
v1
Sensor network script: Node: turbidity | code: prt | fields: unit, reading, value, type Sensor: evaporation | fields: reading, value, lat, unit Task: Fetch lon from turbidity where type exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008555
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: reading, type, qc, unit Sensor: temperature | fields: type, value, depth, unit Task: Retrieve level from snow_depth that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008556
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: depth, lon, qc, level Sensor: wind_speed | fields: lat, qc, level, unit Task: Get level from snow_depth where value exceeds the maximum value from wind_speed for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008557
train
v3
Sensor network script: Node: evaporation | code: hub | fields: level, type, depth, reading Sensor: dew_point | fields: value, level, qc, depth Task: Fetch lon from evaporation where reading is greater than the total of depth in dew_point for matching ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008558
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, unit, ts, depth Sensor: dew_point | fields: lon, depth, level, type Task: Fetch lat from soil_moisture where ts exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008559
train
v3
Sensor network script: Node: sunlight | code: thr | fields: qc, type, unit, value Sensor: drought_index | fields: value, type, lon, reading Task: Retrieve reading from sunlight with depth above the MAX(depth) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008560
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, value, lon, lat Sensor: turbidity | fields: reading, value, level, lon Task: Fetch reading from snow_depth where unit exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008561
train
v2
Sensor network script: Node: humidity | code: thr | fields: lat, reading, qc, value Sensor: soil_moisture | fields: level, value, qc, type Task: Fetch level from humidity that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008562
train
v1
Sensor network script: Node: air_quality | code: mst | fields: qc, lat, lon, type Sensor: temperature | fields: lon, reading, level, depth Task: Fetch value from air_quality where unit exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008563
train
v3
Sensor network script: Node: air_quality | code: hub | fields: type, unit, ts, qc Sensor: pressure | fields: level, lon, reading, qc Task: Retrieve lat from air_quality with depth above the SUM(value) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008564
train
v3
Sensor network script: Node: drought_index | code: clr | fields: reading, level, qc, unit Sensor: soil_moisture | fields: value, qc, lat, unit Task: Retrieve level from drought_index with depth above the MAX(depth) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008565
train
v3
Sensor network script: Node: uv_index | code: stn | fields: qc, lon, level, lat Sensor: wind_speed | fields: lat, ts, type, unit Task: Get lon from uv_index where reading exceeds the total reading from wind_speed for the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008566
train
v2
Sensor network script: Node: humidity | code: ref | fields: lon, unit, value, ts Sensor: visibility | fields: unit, depth, reading, lon Task: Get level from humidity where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008567
train
v2
Sensor network script: Node: turbidity | code: stn | fields: value, qc, lon, reading Sensor: snow_depth | fields: lat, lon, unit, value Task: Fetch reading from turbidity that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008568
train
v2
Sensor network script: Node: uv_index | code: gst | fields: depth, lon, level, ts Sensor: temperature | fields: unit, reading, lat, value Task: Retrieve level from uv_index that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008569
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, type, ts, lat Sensor: dew_point | fields: depth, value, qc, unit Task: Retrieve level from sunlight whose unit is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008570
train
v2
Sensor network script: Node: dew_point | code: thr | fields: lat, type, unit, lon Sensor: frost | fields: level, lon, unit, type Task: Retrieve lon from dew_point that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008571
train
v3
Sensor network script: Node: temperature | code: clr | fields: value, level, type, lon Sensor: sunlight | fields: type, unit, value, lat Task: Retrieve depth from temperature with reading above the MIN(reading) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008572
train
v3
Sensor network script: Node: pressure | code: gst | fields: qc, lat, lon, unit Sensor: soil_moisture | fields: lon, ts, lat, reading Task: Retrieve value from pressure with value above the MIN(reading) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008573
train
v3
Sensor network script: Node: evaporation | code: clr | fields: value, unit, lon, level Sensor: snow_depth | fields: level, value, lon, unit Task: Get lat from evaporation where depth exceeds the maximum value from snow_depth for the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "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_008574
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, lon, type, unit Sensor: sunlight | fields: depth, lat, type, value Task: Retrieve depth from uv_index with reading above the MIN(reading) of sunlight readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008575
train
v3
Sensor network script: Node: evaporation | code: thr | fields: qc, value, type, ts Sensor: air_quality | fields: type, ts, value, depth Task: Get level from evaporation where depth exceeds the minimum depth from air_quality for the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008576
train
v3
Sensor network script: Node: pressure | code: prt | fields: unit, level, value, reading Sensor: cloud_cover | fields: unit, lat, level, lon Task: Retrieve lat from pressure with reading above the AVG(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008577
train
v2
Sensor network script: Node: humidity | code: thr | fields: reading, lon, depth, unit Sensor: drought_index | fields: unit, reading, depth, ts Task: Retrieve level from humidity that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008578
train
v3
Sensor network script: Node: drought_index | code: ref | fields: unit, qc, value, level Sensor: air_quality | fields: value, reading, level, qc Task: Fetch lat from drought_index where depth is greater than the total of reading in air_quality for matching unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008579
train
v1
Sensor network script: Node: temperature | code: gst | fields: reading, type, lat, depth Sensor: lightning | fields: lon, qc, ts, depth Task: Get lon from temperature where qc appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008580
train
v1
Sensor network script: Node: pressure | code: prt | fields: unit, type, level, depth Sensor: rainfall | fields: reading, ts, qc, level Task: Fetch depth from pressure where qc exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008581
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: depth, type, qc, ts Sensor: wind_speed | fields: value, lon, type, level Task: Fetch depth from snow_depth where value is greater than the count of of value in wind_speed for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008582
train
v2
Sensor network script: Node: lightning | code: ref | fields: lon, qc, reading, unit Sensor: uv_index | fields: lon, type, reading, depth Task: Get reading from lightning where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008583
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lon, depth, reading, unit Sensor: temperature | fields: value, ts, lon, depth Task: Get level from soil_moisture where depth appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008584
train
v2
Sensor network script: Node: rainfall | code: mst | fields: reading, type, value, qc Sensor: pressure | fields: value, depth, unit, ts Task: Retrieve level from rainfall that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008585
train
v2
Sensor network script: Node: humidity | code: prt | fields: lat, lon, unit, ts Sensor: soil_moisture | fields: lon, type, reading, ts Task: Retrieve value from humidity that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008586
train
v1
Sensor network script: Node: drought_index | code: stn | fields: qc, depth, unit, type Sensor: turbidity | fields: value, ts, level, lat Task: Get value from drought_index where unit appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008587
train
v1
Sensor network script: Node: pressure | code: ref | fields: reading, qc, ts, depth Sensor: air_quality | fields: lat, type, depth, reading Task: Get reading from pressure where depth appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008588
train
v1
Sensor network script: Node: rainfall | code: gst | fields: lon, type, unit, value Sensor: cloud_cover | fields: value, depth, unit, reading Task: Get lat from rainfall where depth appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008589
train
v2
Sensor network script: Node: frost | code: thr | fields: level, lon, type, lat Sensor: wind_speed | fields: lon, unit, depth, ts Task: Retrieve level from frost that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008590
train
v3
Sensor network script: Node: drought_index | code: stn | fields: type, reading, qc, unit Sensor: visibility | fields: reading, lat, level, value Task: Retrieve lat from drought_index with value above the SUM(depth) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008591
train
v3
Sensor network script: Node: visibility | code: ref | fields: type, reading, value, qc Sensor: snow_depth | fields: lat, qc, reading, ts Task: Retrieve reading from visibility with reading above the MIN(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008592
train
v3
Sensor network script: Node: rainfall | code: ref | fields: level, qc, value, lat Sensor: humidity | fields: lon, unit, depth, qc Task: Get depth from rainfall where depth exceeds the average reading from humidity for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008593
train
v1
Sensor network script: Node: uv_index | code: stn | fields: ts, reading, lon, type Sensor: turbidity | fields: lat, value, depth, unit Task: Fetch lat from uv_index where type exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008594
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: ts, unit, lat, value Sensor: turbidity | fields: value, type, reading, ts Task: Retrieve lon from cloud_cover with depth above the SUM(reading) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008595
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: qc, lat, depth, lon Sensor: temperature | fields: value, depth, qc, lon Task: Get level from soil_moisture where reading exceeds the average value from temperature for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008596
train
v3
Sensor network script: Node: drought_index | code: prt | fields: ts, value, level, unit Sensor: humidity | fields: type, level, reading, depth Task: Get lat from drought_index where depth exceeds the minimum depth from humidity for the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008597
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: value, lat, depth, unit Sensor: dew_point | fields: depth, value, level, lon Task: Retrieve depth from soil_moisture with value above the SUM(reading) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008598
train
v3
Sensor network script: Node: drought_index | code: gst | fields: ts, lon, depth, value Sensor: lightning | fields: reading, value, unit, type Task: Get reading from drought_index where depth exceeds the average reading from lightning for the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008599
train