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: sunlight | code: mst | fields: value, qc, lat, type Sensor: rainfall | fields: value, level, reading, lon Task: Get reading from sunlight where value exceeds the average depth from rainfall for the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005100
train
v2
Sensor network script: Node: dew_point | code: thr | fields: type, reading, unit, depth Sensor: evaporation | fields: lon, ts, lat, qc Task: Retrieve depth from dew_point that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005101
train
v2
Sensor network script: Node: air_quality | code: ref | fields: value, depth, ts, lon Sensor: lightning | fields: lat, type, reading, lon Task: Fetch depth from air_quality that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005102
train
v3
Sensor network script: Node: pressure | code: mst | fields: value, type, depth, ts Sensor: wind_speed | fields: value, type, level, qc Task: Get lat from pressure where value exceeds the total value from wind_speed for the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005103
train
v2
Sensor network script: Node: uv_index | code: prt | fields: ts, reading, lat, value Sensor: visibility | fields: qc, reading, ts, depth Task: Get lon from uv_index where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005104
train
v3
Sensor network script: Node: frost | code: ref | fields: ts, value, reading, lat Sensor: humidity | fields: lat, qc, lon, ts Task: Fetch depth from frost where value is greater than the maximum of reading in humidity for matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005105
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: ts, unit, lon, depth Sensor: air_quality | fields: qc, lat, reading, type Task: Fetch lat from snow_depth where depth is greater than the total of value in air_quality for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005106
train
v2
Sensor network script: Node: drought_index | code: ref | fields: unit, level, type, reading Sensor: wind_speed | fields: type, reading, lon, unit Task: Fetch reading from drought_index that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005107
train
v1
Sensor network script: Node: pressure | code: ref | fields: qc, unit, ts, depth Sensor: soil_moisture | fields: ts, lon, value, type Task: Retrieve level from pressure whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005108
train
v1
Sensor network script: Node: evaporation | code: prt | fields: reading, type, value, lat Sensor: snow_depth | fields: lat, value, lon, qc Task: Retrieve value from evaporation whose ts is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005109
train
v2
Sensor network script: Node: humidity | code: clr | fields: value, lat, unit, depth Sensor: sunlight | fields: lat, value, lon, qc Task: Get level from humidity where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005110
train
v2
Sensor network script: Node: dew_point | code: gst | fields: ts, lon, depth, unit Sensor: soil_moisture | fields: depth, reading, ts, value Task: Fetch lat from dew_point that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005111
train
v2
Sensor network script: Node: uv_index | code: thr | fields: value, type, unit, depth Sensor: soil_moisture | fields: depth, qc, lon, value Task: Retrieve level from uv_index that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005112
train
v1
Sensor network script: Node: drought_index | code: gst | fields: ts, level, depth, unit Sensor: soil_moisture | fields: type, qc, reading, unit Task: Fetch value from drought_index where unit exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005113
train
v2
Sensor network script: Node: turbidity | code: stn | fields: level, depth, lat, unit Sensor: drought_index | fields: type, qc, depth, value Task: Get level from turbidity where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005114
train
v1
Sensor network script: Node: temperature | code: mst | fields: ts, qc, lon, lat Sensor: visibility | fields: qc, reading, lat, type Task: Get lon from temperature where ts appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005115
train
v3
Sensor network script: Node: sunlight | code: gst | fields: lat, type, ts, depth Sensor: lightning | fields: value, qc, reading, lon Task: Retrieve value from sunlight with depth above the SUM(value) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005116
train
v3
Sensor network script: Node: dew_point | code: prt | fields: value, level, type, unit Sensor: frost | fields: level, depth, qc, type Task: Get depth from dew_point where value exceeds the total depth from frost for the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005117
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: type, value, lon, depth Sensor: pressure | fields: level, depth, value, qc Task: Fetch level from cloud_cover that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005118
train
v3
Sensor network script: Node: pressure | code: thr | fields: unit, depth, level, type Sensor: snow_depth | fields: unit, type, level, qc Task: Retrieve reading from pressure with depth above the AVG(value) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005119
train
v3
Sensor network script: Node: humidity | code: gst | fields: ts, level, value, lat Sensor: air_quality | fields: depth, ts, type, qc Task: Fetch reading from humidity where value is greater than the total of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005120
train
v1
Sensor network script: Node: drought_index | code: gst | fields: qc, lon, value, type Sensor: evaporation | fields: ts, qc, reading, value Task: Fetch depth from drought_index where unit exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005121
train
v2
Sensor network script: Node: drought_index | code: mst | fields: qc, lat, level, type Sensor: frost | fields: depth, ts, reading, value Task: Get reading from drought_index where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005122
train
v3
Sensor network script: Node: sunlight | code: prt | fields: lat, type, value, depth Sensor: drought_index | fields: reading, lon, type, ts Task: Retrieve value from sunlight with depth above the MIN(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005123
train
v3
Sensor network script: Node: uv_index | code: stn | fields: qc, reading, unit, lon Sensor: wind_speed | fields: unit, type, lon, depth Task: Fetch level from uv_index where depth is greater than the count of of depth in wind_speed for matching qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005124
train
v3
Sensor network script: Node: temperature | code: ref | fields: depth, lon, type, lat Sensor: humidity | fields: lat, unit, type, lon Task: Retrieve value from temperature with depth above the AVG(reading) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "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_005125
train
v1
Sensor network script: Node: uv_index | code: hub | fields: ts, level, lat, qc Sensor: wind_speed | fields: lat, unit, ts, qc Task: Retrieve value from uv_index whose ts is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005126
train
v3
Sensor network script: Node: uv_index | code: prt | fields: lon, qc, ts, level Sensor: frost | fields: depth, lon, qc, unit Task: Get value from uv_index where value exceeds the count of reading from frost for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005127
train
v2
Sensor network script: Node: visibility | code: clr | fields: depth, qc, ts, value Sensor: soil_moisture | fields: unit, level, lon, value Task: Retrieve reading from visibility that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005128
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lat, lon, unit, qc Sensor: frost | fields: depth, reading, lon, value Task: Retrieve level from air_quality whose qc is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005129
train
v2
Sensor network script: Node: temperature | code: gst | fields: lon, type, qc, unit Sensor: drought_index | fields: unit, ts, reading, depth Task: Retrieve level from temperature that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005130
train
v2
Sensor network script: Node: air_quality | code: stn | fields: value, ts, type, unit Sensor: frost | fields: value, level, ts, qc Task: Get value from air_quality where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005131
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: lon, ts, reading, depth Sensor: frost | fields: qc, unit, lat, depth Task: Fetch depth from cloud_cover where depth is greater than the maximum of reading in frost for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "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_005132
train
v3
Sensor network script: Node: visibility | code: stn | fields: level, reading, lat, lon Sensor: temperature | fields: qc, value, reading, unit Task: Fetch depth from visibility where depth is greater than the minimum of depth in temperature for matching ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005133
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: type, depth, ts, unit Sensor: soil_moisture | fields: ts, unit, type, level Task: Fetch lon from wind_speed where qc exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005134
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lat, ts, type, value Sensor: uv_index | fields: reading, type, depth, ts Task: Get lon from drought_index where qc appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005135
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, lat, ts, type Sensor: dew_point | fields: lon, value, reading, ts Task: Retrieve reading from snow_depth whose depth is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005136
train
v2
Sensor network script: Node: pressure | code: mst | fields: qc, lat, lon, reading Sensor: visibility | fields: level, value, reading, ts Task: Fetch level from pressure that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005137
train
v1
Sensor network script: Node: air_quality | code: ref | fields: reading, depth, level, qc Sensor: dew_point | fields: value, unit, qc, lat Task: Retrieve depth from air_quality whose qc is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005138
train
v3
Sensor network script: Node: sunlight | code: mst | fields: reading, level, depth, lat Sensor: cloud_cover | fields: value, ts, qc, lat Task: Fetch reading from sunlight where value is greater than the total of reading in cloud_cover for matching type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005139
train
v1
Sensor network script: Node: rainfall | code: thr | fields: type, ts, qc, depth Sensor: visibility | fields: depth, unit, lat, ts Task: Fetch value from rainfall where qc exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005140
train
v3
Sensor network script: Node: turbidity | code: gst | fields: lon, depth, lat, unit Sensor: pressure | fields: reading, ts, unit, level Task: Fetch depth from turbidity where value is greater than the minimum of value in pressure for matching depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005141
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: level, type, unit, qc Sensor: sunlight | fields: type, level, depth, unit Task: Fetch depth from wind_speed that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005142
train
v3
Sensor network script: Node: uv_index | code: prt | fields: level, value, type, lon Sensor: turbidity | fields: qc, ts, unit, level Task: Get depth from uv_index where depth exceeds the total reading from turbidity for the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005143
train
v1
Sensor network script: Node: temperature | code: prt | fields: lat, qc, type, ts Sensor: dew_point | fields: depth, reading, lon, ts Task: Fetch value from temperature where depth exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005144
train
v1
Sensor network script: Node: air_quality | code: mst | fields: type, lon, depth, qc Sensor: wind_speed | fields: lon, depth, value, qc Task: Fetch level from air_quality where type exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005145
train
v2
Sensor network script: Node: lightning | code: clr | fields: unit, reading, level, lon Sensor: drought_index | fields: ts, depth, lat, qc Task: Retrieve value from lightning that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005146
train
v2
Sensor network script: Node: sunlight | code: ref | fields: lat, level, reading, ts Sensor: evaporation | fields: lat, level, unit, depth Task: Retrieve level from sunlight that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005147
train
v2
Sensor network script: Node: humidity | code: mst | fields: unit, lon, type, ts Sensor: lightning | fields: reading, level, depth, type Task: Retrieve reading from humidity that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005148
train
v1
Sensor network script: Node: frost | code: thr | fields: unit, depth, ts, value Sensor: dew_point | fields: value, unit, ts, depth Task: Fetch value from frost where type exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005149
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: depth, qc, unit, lon Sensor: frost | fields: qc, unit, value, ts Task: Fetch level from wind_speed that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005150
train
v1
Sensor network script: Node: frost | code: stn | fields: value, unit, lon, depth Sensor: cloud_cover | fields: ts, value, qc, level Task: Retrieve level from frost whose type is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005151
train
v3
Sensor network script: Node: evaporation | code: hub | fields: ts, level, lat, unit Sensor: drought_index | fields: level, reading, lat, depth Task: Fetch reading from evaporation where depth is greater than the maximum of depth in drought_index for matching depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005152
train
v2
Sensor network script: Node: visibility | code: thr | fields: unit, value, type, depth Sensor: rainfall | fields: unit, type, lat, lon Task: Retrieve value from visibility that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005153
train
v3
Sensor network script: Node: humidity | code: clr | fields: type, lat, qc, value Sensor: turbidity | fields: qc, reading, depth, value Task: Get value from humidity where depth exceeds the maximum reading from turbidity for the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005154
train
v3
Sensor network script: Node: humidity | code: mst | fields: unit, qc, depth, reading Sensor: drought_index | fields: unit, level, lat, reading Task: Fetch lat from humidity where reading is greater than the average of value in drought_index for matching depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005155
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: qc, lat, ts, value Sensor: frost | fields: ts, reading, depth, level Task: Get level from wind_speed where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005156
train
v2
Sensor network script: Node: uv_index | code: stn | fields: unit, lon, level, value Sensor: pressure | fields: ts, level, type, reading Task: Retrieve reading from uv_index that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005157
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: level, depth, value, lon Sensor: sunlight | fields: level, type, ts, qc Task: Get depth from cloud_cover where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005158
train
v3
Sensor network script: Node: temperature | code: mst | fields: lat, type, lon, level Sensor: snow_depth | fields: value, level, reading, type Task: Retrieve lat from temperature with value above the MAX(value) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005159
train
v2
Sensor network script: Node: rainfall | code: stn | fields: unit, ts, reading, value Sensor: drought_index | fields: type, lon, ts, qc Task: Fetch level from rainfall that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005160
train
v3
Sensor network script: Node: drought_index | code: mst | fields: lon, unit, ts, qc Sensor: air_quality | fields: unit, value, depth, lon Task: Get depth from drought_index where depth exceeds the average value from air_quality for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005161
train
v3
Sensor network script: Node: dew_point | code: prt | fields: type, reading, unit, lat Sensor: snow_depth | fields: qc, value, reading, type Task: Get lat from dew_point where value exceeds the minimum reading from snow_depth for the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005162
train
v1
Sensor network script: Node: temperature | code: hub | fields: unit, lon, lat, ts Sensor: soil_moisture | fields: lat, reading, qc, value Task: Fetch lon from temperature where depth exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005163
train
v3
Sensor network script: Node: visibility | code: gst | fields: level, lon, unit, value Sensor: sunlight | fields: lat, level, value, ts Task: Retrieve reading from visibility with reading above the COUNT(value) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005164
train
v1
Sensor network script: Node: pressure | code: hub | fields: reading, value, unit, lon Sensor: sunlight | fields: level, type, reading, lat Task: Fetch level from pressure where type exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005165
train
v2
Sensor network script: Node: uv_index | code: mst | fields: type, ts, value, reading Sensor: snow_depth | fields: qc, reading, type, level Task: Get depth from uv_index where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005166
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: reading, lon, lat, unit Sensor: visibility | fields: reading, qc, level, depth Task: Retrieve value from cloud_cover with depth above the MIN(reading) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005167
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, ts, value, qc Sensor: drought_index | fields: lon, type, depth, lat Task: Retrieve value from dew_point that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005168
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: level, qc, value, lon Sensor: turbidity | fields: depth, reading, qc, unit Task: Fetch lat from wind_speed where reading is greater than the average of reading in turbidity for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005169
train
v3
Sensor network script: Node: air_quality | code: thr | fields: reading, lat, level, depth Sensor: evaporation | fields: lat, value, reading, depth Task: Get reading from air_quality where reading exceeds the count of depth from evaporation for the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005170
train
v3
Sensor network script: Node: frost | code: ref | fields: lat, qc, unit, type Sensor: wind_speed | fields: qc, reading, type, value Task: Get lat from frost where value exceeds the total reading from wind_speed for the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005171
train
v2
Sensor network script: Node: air_quality | code: mst | fields: value, ts, type, unit Sensor: temperature | fields: depth, lon, qc, value Task: Get value from air_quality where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005172
train
v3
Sensor network script: Node: lightning | code: hub | fields: reading, qc, type, ts Sensor: temperature | fields: reading, unit, depth, value Task: Fetch lon from lightning where reading is greater than the minimum of reading in temperature for matching depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005173
train
v3
Sensor network script: Node: air_quality | code: prt | fields: depth, value, reading, lon Sensor: snow_depth | fields: type, depth, lon, lat Task: Retrieve value from air_quality with depth above the COUNT(reading) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005174
train
v1
Sensor network script: Node: temperature | code: ref | fields: type, reading, depth, lat Sensor: pressure | fields: lat, ts, unit, level Task: Fetch lon from temperature where ts exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005175
train
v2
Sensor network script: Node: temperature | code: clr | fields: qc, value, ts, reading Sensor: cloud_cover | fields: ts, unit, reading, type Task: Get level from temperature where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005176
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lat, qc, depth, lon Sensor: snow_depth | fields: unit, ts, level, reading Task: Retrieve level from turbidity whose unit is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005177
train
v1
Sensor network script: Node: temperature | code: mst | fields: lon, type, value, unit Sensor: dew_point | fields: lat, type, qc, reading Task: Get value from temperature where type appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005178
train
v3
Sensor network script: Node: frost | code: thr | fields: ts, value, type, level Sensor: drought_index | fields: type, lat, depth, unit Task: Fetch reading from frost where depth is greater than the minimum of value in drought_index for matching type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005179
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: depth, type, lon, value Sensor: air_quality | fields: unit, type, ts, qc Task: Retrieve level from soil_moisture that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005180
train
v3
Sensor network script: Node: lightning | code: thr | fields: qc, unit, ts, depth Sensor: sunlight | fields: type, ts, unit, depth Task: Get depth from lightning where value exceeds the average depth from sunlight for the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005181
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lon, depth, type, lat Sensor: soil_moisture | fields: ts, qc, unit, type Task: Fetch lon from air_quality that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005182
train
v1
Sensor network script: Node: drought_index | code: gst | fields: qc, reading, depth, type Sensor: rainfall | fields: ts, lat, qc, depth Task: Get lon from drought_index where type appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005183
train
v3
Sensor network script: Node: turbidity | code: hub | fields: lat, ts, unit, qc Sensor: evaporation | fields: lat, qc, value, level Task: Get value from turbidity where depth exceeds the maximum depth from evaporation for the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005184
train
v2
Sensor network script: Node: visibility | code: hub | fields: lat, lon, ts, unit Sensor: evaporation | fields: depth, lat, type, unit Task: Retrieve lat from visibility that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005185
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: reading, unit, lat, depth Sensor: sunlight | fields: level, type, reading, ts Task: Retrieve lat from snow_depth whose depth is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005186
train
v1
Sensor network script: Node: visibility | code: ref | fields: depth, value, type, lon Sensor: snow_depth | fields: value, lat, depth, reading Task: Get reading from visibility where ts appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="ts", 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": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005187
train
v1
Sensor network script: Node: dew_point | code: stn | fields: depth, unit, type, reading Sensor: humidity | fields: depth, lat, qc, lon Task: Retrieve value from dew_point whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005188
train
v1
Sensor network script: Node: humidity | code: ref | fields: depth, reading, level, type Sensor: frost | fields: reading, lon, level, lat Task: Fetch reading from humidity where type exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005189
train
v3
Sensor network script: Node: pressure | code: gst | fields: lat, level, reading, ts Sensor: rainfall | fields: reading, lat, unit, value Task: Retrieve value from pressure with reading above the MIN(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005190
train
v2
Sensor network script: Node: drought_index | code: prt | fields: unit, lat, reading, qc Sensor: cloud_cover | fields: unit, type, value, level Task: Fetch level from drought_index that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005191
train
v2
Sensor network script: Node: drought_index | code: hub | fields: qc, reading, unit, depth Sensor: uv_index | fields: qc, lat, type, level Task: Retrieve lat from drought_index that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005192
train
v3
Sensor network script: Node: frost | code: hub | fields: lon, value, qc, level Sensor: wind_speed | fields: type, depth, unit, reading Task: Fetch level from frost where depth is greater than the average of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005193
train
v3
Sensor network script: Node: humidity | code: stn | fields: qc, lat, depth, value Sensor: cloud_cover | fields: depth, unit, qc, value Task: Fetch lon from humidity where depth is greater than the count of of depth in cloud_cover for matching qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005194
train
v3
Sensor network script: Node: humidity | code: hub | fields: depth, qc, lon, type Sensor: soil_moisture | fields: lon, depth, type, level Task: Retrieve lat from humidity with reading above the MAX(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005195
train
v2
Sensor network script: Node: pressure | code: clr | fields: unit, depth, ts, lon Sensor: drought_index | fields: lat, level, depth, lon Task: Get depth from pressure where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005196
train
v3
Sensor network script: Node: humidity | code: ref | fields: ts, lon, qc, type Sensor: wind_speed | fields: reading, level, lat, value Task: Retrieve depth from humidity with depth above the COUNT(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005197
train
v2
Sensor network script: Node: pressure | code: clr | fields: lat, depth, reading, value Sensor: turbidity | fields: qc, depth, ts, value Task: Get value from pressure where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005198
train
v1
Sensor network script: Node: dew_point | code: gst | fields: reading, depth, level, value Sensor: turbidity | fields: value, unit, ts, lon Task: Retrieve lat from dew_point whose qc is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005199
train