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: wind_speed | code: hub | fields: unit, level, reading, qc Sensor: humidity | fields: type, lat, qc, reading Task: Get lat from wind_speed where reading exceeds the minimum value from humidity for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018800
train
v1
Sensor network script: Node: pressure | code: stn | fields: type, unit, lon, qc Sensor: visibility | fields: value, ts, level, type Task: Fetch depth from pressure where qc exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018801
train
v3
Sensor network script: Node: evaporation | code: thr | fields: lat, qc, type, unit Sensor: visibility | fields: lon, type, depth, qc Task: Fetch depth from evaporation where depth is greater than the total of value in visibility for matching ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018802
train
v1
Sensor network script: Node: rainfall | code: ref | fields: qc, ts, unit, value Sensor: air_quality | fields: value, lat, reading, depth Task: Get value from rainfall where depth appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018803
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, depth, type, lat Sensor: visibility | fields: ts, reading, value, level Task: Fetch lon from dew_point where ts exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018804
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: value, qc, level, lat Sensor: evaporation | fields: unit, depth, qc, type Task: Fetch level from soil_moisture where unit exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018805
train
v3
Sensor network script: Node: pressure | code: stn | fields: type, reading, value, lon Sensor: wind_speed | fields: level, lat, qc, unit Task: Get lat from pressure where reading exceeds the total depth from wind_speed for the same unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018806
train
v3
Sensor network script: Node: dew_point | code: stn | fields: lat, reading, depth, qc Sensor: evaporation | fields: lon, type, ts, reading Task: Fetch reading from dew_point where reading is greater than the average of value in evaporation for matching unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "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_018807
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: type, qc, lat, depth Sensor: snow_depth | fields: ts, value, lon, depth Task: Fetch level from soil_moisture that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018808
train
v1
Sensor network script: Node: air_quality | code: mst | fields: unit, qc, lon, depth Sensor: turbidity | fields: unit, qc, reading, value Task: Retrieve lon from air_quality whose unit is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018809
train
v1
Sensor network script: Node: temperature | code: prt | fields: level, reading, lon, ts Sensor: humidity | fields: type, qc, ts, level Task: Fetch lon from temperature where qc exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018810
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: ts, unit, value, qc Sensor: humidity | fields: qc, level, reading, depth Task: Retrieve lon from cloud_cover whose unit is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018811
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, lon, type, qc Sensor: frost | fields: value, depth, lat, type Task: Fetch depth from pressure that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018812
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: ts, value, depth, lat Sensor: frost | fields: unit, reading, level, lat Task: Fetch reading from soil_moisture where ts exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018813
train
v3
Sensor network script: Node: temperature | code: gst | fields: unit, value, level, reading Sensor: soil_moisture | fields: value, unit, type, ts Task: Get level from temperature where value exceeds the total depth from soil_moisture for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018814
train
v3
Sensor network script: Node: temperature | code: ref | fields: lat, value, level, unit Sensor: air_quality | fields: type, ts, reading, depth Task: Fetch depth from temperature where depth is greater than the count of of reading in air_quality for matching unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018815
train
v3
Sensor network script: Node: evaporation | code: prt | fields: type, lon, reading, ts Sensor: lightning | fields: depth, unit, ts, value Task: Get reading from evaporation where value exceeds the maximum value from lightning for the same depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018816
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lon, lat, ts, value Sensor: turbidity | fields: lon, qc, lat, ts Task: Fetch level from evaporation that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018817
train
v3
Sensor network script: Node: drought_index | code: gst | fields: type, unit, qc, lat Sensor: humidity | fields: qc, unit, depth, lat Task: Get depth from drought_index where depth exceeds the maximum depth from humidity for the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018818
train
v3
Sensor network script: Node: rainfall | code: ref | fields: level, depth, unit, lat Sensor: cloud_cover | fields: level, value, ts, depth Task: Fetch lon from rainfall where value is greater than the average of value in cloud_cover for matching unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018819
train
v3
Sensor network script: Node: turbidity | code: stn | fields: qc, value, level, unit Sensor: uv_index | fields: reading, unit, lat, ts Task: Retrieve reading from turbidity with depth above the SUM(value) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018820
train
v3
Sensor network script: Node: visibility | code: thr | fields: qc, lat, value, type Sensor: evaporation | fields: level, ts, type, value Task: Fetch depth from visibility where value is greater than the maximum of value in evaporation for matching ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018821
train
v3
Sensor network script: Node: air_quality | code: clr | fields: lon, ts, depth, lat Sensor: rainfall | fields: level, lon, depth, ts Task: Retrieve lon from air_quality with reading above the AVG(value) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018822
train
v1
Sensor network script: Node: drought_index | code: clr | fields: lat, value, ts, unit Sensor: rainfall | fields: lat, value, depth, type Task: Get value from drought_index where qc appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018823
train
v2
Sensor network script: Node: pressure | code: gst | fields: depth, lat, reading, type Sensor: evaporation | fields: level, qc, value, ts Task: Retrieve lon from pressure that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018824
train
v1
Sensor network script: Node: evaporation | code: hub | fields: type, qc, level, lat Sensor: air_quality | fields: type, lon, unit, reading Task: Fetch reading from evaporation where type exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018825
train
v3
Sensor network script: Node: rainfall | code: stn | fields: value, unit, type, lon Sensor: drought_index | fields: reading, depth, qc, lat Task: Retrieve value from rainfall with reading above the SUM(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018826
train
v1
Sensor network script: Node: pressure | code: stn | fields: ts, level, qc, unit Sensor: rainfall | fields: ts, depth, qc, type Task: Get lat from pressure where unit appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018827
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: reading, depth, lon, type Sensor: visibility | fields: ts, unit, lon, reading Task: Fetch depth from wind_speed where reading is greater than the maximum of value in visibility for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018828
train
v2
Sensor network script: Node: temperature | code: hub | fields: lon, depth, reading, value Sensor: drought_index | fields: reading, qc, value, unit Task: Get depth from temperature where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018829
train
v3
Sensor network script: Node: lightning | code: clr | fields: depth, type, qc, ts Sensor: frost | fields: qc, type, reading, unit Task: Fetch lon from lightning where depth is greater than the maximum of reading in frost for matching unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018830
train
v3
Sensor network script: Node: drought_index | code: stn | fields: level, value, lat, reading Sensor: wind_speed | fields: type, level, unit, lon Task: Fetch lat from drought_index where reading is greater than the maximum of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018831
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: depth, type, reading, level Sensor: temperature | fields: depth, level, ts, type Task: Fetch value from snow_depth that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018832
train
v2
Sensor network script: Node: rainfall | code: mst | fields: qc, unit, lon, level Sensor: frost | fields: unit, level, lon, type Task: Retrieve reading from rainfall that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018833
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: unit, lon, qc, level Sensor: wind_speed | fields: qc, type, unit, lat Task: Fetch lat from cloud_cover where qc exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018834
train
v3
Sensor network script: Node: uv_index | code: stn | fields: type, lat, value, level Sensor: temperature | fields: qc, depth, unit, ts Task: Fetch level from uv_index where depth is greater than the maximum of depth in temperature for matching ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018835
train
v1
Sensor network script: Node: sunlight | code: gst | fields: type, lon, reading, depth Sensor: lightning | fields: type, ts, reading, qc Task: Get depth from sunlight where type appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018836
train
v2
Sensor network script: Node: air_quality | code: prt | fields: type, lon, qc, reading Sensor: drought_index | fields: value, level, reading, type Task: Get value from air_quality where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018837
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: lat, value, ts, level Sensor: evaporation | fields: qc, unit, value, depth Task: Get reading from soil_moisture where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018838
train
v3
Sensor network script: Node: temperature | code: gst | fields: value, type, lon, depth Sensor: frost | fields: ts, reading, lon, depth Task: Retrieve level from temperature with value above the SUM(reading) of frost readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018839
train
v3
Sensor network script: Node: sunlight | code: gst | fields: lat, unit, ts, type Sensor: drought_index | fields: ts, level, type, lat Task: Fetch value from sunlight where value is greater than the total of value in drought_index for matching qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018840
train
v3
Sensor network script: Node: air_quality | code: stn | fields: type, value, qc, lon Sensor: drought_index | fields: lat, level, reading, type Task: Fetch value from air_quality where depth is greater than the maximum of depth in drought_index for matching depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018841
train
v3
Sensor network script: Node: lightning | code: thr | fields: ts, lat, type, level Sensor: sunlight | fields: depth, level, value, qc Task: Fetch level from lightning where value is greater than the count of of reading in sunlight for matching type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018842
train
v2
Sensor network script: Node: drought_index | code: clr | fields: lon, ts, depth, reading Sensor: pressure | fields: depth, level, lat, unit Task: Get lat from drought_index where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018843
train
v2
Sensor network script: Node: rainfall | code: ref | fields: unit, depth, ts, lon Sensor: air_quality | fields: lon, depth, reading, lat Task: Fetch reading from rainfall that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018844
train
v3
Sensor network script: Node: temperature | code: clr | fields: value, unit, ts, depth Sensor: snow_depth | fields: lat, reading, lon, level Task: Get depth from temperature where reading exceeds the total reading from snow_depth for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018845
train
v1
Sensor network script: Node: uv_index | code: mst | fields: reading, ts, type, qc Sensor: evaporation | fields: lat, reading, ts, value Task: Fetch lon from uv_index where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018846
train
v1
Sensor network script: Node: evaporation | code: thr | fields: level, unit, lat, qc Sensor: cloud_cover | fields: lon, reading, level, depth Task: Fetch lat from evaporation where depth exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018847
train
v1
Sensor network script: Node: evaporation | code: thr | fields: level, reading, lat, lon Sensor: frost | fields: reading, unit, ts, lon Task: Get value from evaporation where ts appears in frost readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018848
train
v3
Sensor network script: Node: lightning | code: thr | fields: depth, value, level, lon Sensor: evaporation | fields: depth, lat, type, ts Task: Fetch depth from lightning where reading is greater than the average of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018849
train
v3
Sensor network script: Node: uv_index | code: hub | fields: value, unit, type, level Sensor: sunlight | fields: qc, level, lat, reading Task: Fetch level from uv_index where depth is greater than the minimum of reading in sunlight for matching depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018850
train
v3
Sensor network script: Node: drought_index | code: ref | fields: value, type, qc, reading Sensor: visibility | fields: value, unit, qc, lon Task: Retrieve level from drought_index with value above the MAX(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018851
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: depth, ts, lat, unit Sensor: frost | fields: lon, type, qc, ts Task: Get level from wind_speed where reading exceeds the total reading from frost for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018852
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: level, unit, type, lon Sensor: frost | fields: level, depth, qc, ts Task: Get depth from snow_depth where reading exceeds the minimum depth from frost for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018853
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: type, reading, qc, lat Sensor: turbidity | fields: value, depth, reading, lat Task: Fetch level from cloud_cover where unit exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018854
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lon, depth, qc, type Sensor: snow_depth | fields: reading, ts, lon, type Task: Fetch level from air_quality where unit exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018855
train
v3
Sensor network script: Node: visibility | code: clr | fields: reading, lon, ts, value Sensor: soil_moisture | fields: lat, ts, qc, unit Task: Fetch lon from visibility where value is greater than the maximum of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018856
train
v3
Sensor network script: Node: uv_index | code: mst | fields: lon, lat, value, qc Sensor: air_quality | fields: depth, qc, value, type Task: Fetch value from uv_index where reading is greater than the average of reading in air_quality for matching ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018857
train
v2
Sensor network script: Node: turbidity | code: prt | fields: unit, level, reading, ts Sensor: pressure | fields: depth, value, level, type Task: Retrieve lat from turbidity that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018858
train
v1
Sensor network script: Node: temperature | code: ref | fields: level, value, reading, lon Sensor: humidity | fields: lon, qc, ts, reading Task: Retrieve level from temperature whose qc is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018859
train
v1
Sensor network script: Node: temperature | code: gst | fields: reading, depth, lat, type Sensor: pressure | fields: unit, lat, qc, level Task: Get depth from temperature where qc appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018860
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: unit, lon, ts, lat Sensor: humidity | fields: unit, level, qc, ts Task: Get lon from snow_depth where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018861
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: level, reading, unit, qc Sensor: temperature | fields: qc, lat, level, value Task: Fetch level from cloud_cover where reading is greater than the total of reading in temperature for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018862
train
v3
Sensor network script: Node: humidity | code: thr | fields: ts, value, depth, level Sensor: turbidity | fields: unit, reading, lat, type Task: Get depth from humidity where reading exceeds the count of value from turbidity for the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018863
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: value, reading, unit, lat Sensor: uv_index | fields: ts, level, reading, value Task: Get reading from soil_moisture where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "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_018864
train
v2
Sensor network script: Node: turbidity | code: mst | fields: level, depth, reading, unit Sensor: sunlight | fields: depth, unit, reading, type Task: Fetch lon from turbidity that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018865
train
v1
Sensor network script: Node: evaporation | code: thr | fields: unit, reading, lon, ts Sensor: wind_speed | fields: depth, lon, unit, level Task: Fetch depth from evaporation where depth exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018866
train
v1
Sensor network script: Node: frost | code: gst | fields: ts, level, unit, reading Sensor: cloud_cover | fields: qc, type, depth, lat Task: Retrieve lon from frost whose type is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018867
train
v3
Sensor network script: Node: humidity | code: hub | fields: qc, lon, ts, reading Sensor: turbidity | fields: type, lon, level, depth Task: Retrieve level from humidity with value above the AVG(reading) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018868
train
v2
Sensor network script: Node: humidity | code: prt | fields: unit, depth, lon, level Sensor: frost | fields: type, qc, lat, value Task: Retrieve depth from humidity that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018869
train
v2
Sensor network script: Node: turbidity | code: ref | fields: ts, reading, depth, unit Sensor: frost | fields: depth, lon, unit, reading Task: Get reading from turbidity where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018870
train
v1
Sensor network script: Node: visibility | code: prt | fields: depth, qc, lat, type Sensor: humidity | fields: qc, depth, type, ts Task: Fetch lat from visibility where ts exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018871
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lat, qc, reading, lon Sensor: lightning | fields: lon, level, ts, unit Task: Fetch level from snow_depth that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018872
train
v2
Sensor network script: Node: uv_index | code: prt | fields: type, depth, reading, lon Sensor: temperature | fields: ts, qc, lon, unit Task: Get lat from uv_index where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018873
train
v3
Sensor network script: Node: evaporation | code: stn | fields: ts, lat, depth, level Sensor: temperature | fields: unit, level, depth, reading Task: Get depth from evaporation where reading exceeds the count of reading from temperature for the same ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018874
train
v2
Sensor network script: Node: frost | code: prt | fields: lat, ts, reading, type Sensor: visibility | fields: value, depth, qc, type Task: Fetch lat from frost that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018875
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: type, depth, reading, qc Sensor: turbidity | fields: reading, type, ts, lat Task: Fetch lon from soil_moisture that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018876
train
v2
Sensor network script: Node: evaporation | code: mst | fields: qc, depth, lat, lon Sensor: humidity | fields: value, reading, unit, ts Task: Fetch lat from evaporation that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018877
train
v2
Sensor network script: Node: pressure | code: stn | fields: lon, value, depth, lat Sensor: rainfall | fields: depth, qc, lat, ts Task: Fetch reading from pressure that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018878
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: qc, unit, depth, lat Sensor: pressure | fields: level, ts, qc, unit Task: Get depth from wind_speed where unit appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018879
train
v1
Sensor network script: Node: rainfall | code: stn | fields: value, reading, depth, unit Sensor: snow_depth | fields: ts, level, depth, value Task: Fetch lat from rainfall where type exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018880
train
v3
Sensor network script: Node: frost | code: clr | fields: level, unit, lat, reading Sensor: uv_index | fields: type, level, lon, qc Task: Fetch lon from frost where value is greater than the maximum of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "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_018881
train
v1
Sensor network script: Node: drought_index | code: stn | fields: ts, depth, lon, lat Sensor: rainfall | fields: lat, lon, ts, reading Task: Retrieve reading from drought_index whose ts is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018882
train
v3
Sensor network script: Node: dew_point | code: prt | fields: lat, level, reading, value Sensor: rainfall | fields: depth, ts, reading, lat Task: Retrieve reading from dew_point with depth above the COUNT(depth) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018883
train
v2
Sensor network script: Node: humidity | code: thr | fields: ts, reading, unit, type Sensor: evaporation | fields: depth, ts, qc, lon Task: Fetch depth from humidity that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018884
train
v1
Sensor network script: Node: sunlight | code: hub | fields: value, depth, reading, unit Sensor: dew_point | fields: depth, reading, ts, value Task: Fetch lat from sunlight where unit exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018885
train
v2
Sensor network script: Node: temperature | code: gst | fields: value, reading, level, lon Sensor: turbidity | fields: lon, qc, level, lat Task: Retrieve depth from temperature that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "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_018886
train
v1
Sensor network script: Node: temperature | code: clr | fields: lon, lat, depth, value Sensor: cloud_cover | fields: level, type, value, unit Task: Get reading from temperature where qc appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018887
train
v3
Sensor network script: Node: dew_point | code: hub | fields: value, lat, level, depth Sensor: rainfall | fields: type, value, level, ts Task: Get reading from dew_point where reading exceeds the count of depth from rainfall for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018888
train
v3
Sensor network script: Node: rainfall | code: prt | fields: level, lon, ts, qc Sensor: frost | fields: ts, reading, unit, level Task: Retrieve lon from rainfall with reading above the SUM(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018889
train
v2
Sensor network script: Node: humidity | code: prt | fields: unit, type, value, lon Sensor: drought_index | fields: type, lon, qc, depth Task: Get lon from humidity where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018890
train
v3
Sensor network script: Node: dew_point | code: hub | fields: ts, lon, value, lat Sensor: humidity | fields: reading, qc, lat, depth Task: Get lat from dew_point where value exceeds the count of value from humidity for the same qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018891
train
v2
Sensor network script: Node: sunlight | code: gst | fields: ts, unit, reading, level Sensor: visibility | fields: lat, qc, lon, reading Task: Retrieve depth from sunlight that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018892
train
v1
Sensor network script: Node: lightning | code: stn | fields: lat, level, reading, type Sensor: dew_point | fields: lon, reading, ts, depth Task: Get value from lightning where unit appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018893
train
v1
Sensor network script: Node: pressure | code: ref | fields: lat, value, reading, unit Sensor: air_quality | fields: unit, ts, qc, level Task: Get level from pressure where ts appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018894
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, ts, level, lon Sensor: sunlight | fields: unit, reading, value, lat Task: Fetch lon from rainfall where qc exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018895
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: reading, lon, value, lat Sensor: lightning | fields: value, qc, ts, level Task: Fetch lat from wind_speed where value is greater than the minimum of value in lightning for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018896
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: lon, ts, value, depth Sensor: rainfall | fields: depth, type, lat, value Task: Get lat from wind_speed where unit appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018897
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: depth, qc, level, lon Sensor: turbidity | fields: lon, value, level, depth Task: Retrieve lon from soil_moisture with value above the MAX(depth) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018898
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: value, type, reading, unit Sensor: pressure | fields: lat, value, level, lon Task: Retrieve level from snow_depth with reading above the MIN(reading) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018899
train