variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: cloud_cover | code: mst | fields: depth, lon, value, lat Sensor: pressure | fields: lon, depth, unit, qc Task: Retrieve lon from cloud_cover that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070100
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: level, lat, type, lon Sensor: pressure | fields: reading, depth, qc, ts Task: Fetch level from soil_moisture where reading is greater than the minimum of reading in pressure for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "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_070101
train
v2
Sensor network script: Node: lightning | code: ref | fields: ts, type, value, reading Sensor: soil_moisture | fields: value, unit, ts, level Task: Retrieve reading from lightning that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070102
train
v3
Sensor network script: Node: uv_index | code: gst | fields: lat, lon, qc, level Sensor: cloud_cover | fields: lon, reading, level, ts Task: Fetch lon from uv_index where reading is greater than the count of of reading in cloud_cover for matching qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070103
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: ts, lat, unit, depth Sensor: cloud_cover | fields: unit, value, level, ts Task: Retrieve level from wind_speed that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070104
train
v3
Sensor network script: Node: temperature | code: mst | fields: unit, depth, qc, type Sensor: turbidity | fields: ts, depth, value, unit Task: Fetch value from temperature where value is greater than the average of value in turbidity for matching unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070105
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: lat, level, type, lon Sensor: lightning | fields: depth, type, lat, ts Task: Get reading from soil_moisture where reading exceeds the total value from lightning for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070106
train
v3
Sensor network script: Node: pressure | code: ref | fields: level, qc, unit, depth Sensor: rainfall | fields: value, unit, reading, lon Task: Retrieve lon from pressure with reading above the MIN(value) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070107
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: ts, type, lat, level Sensor: cloud_cover | fields: type, depth, lon, ts Task: Fetch depth from wind_speed where reading is greater than the maximum of depth in cloud_cover for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070108
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lat, depth, level, type Sensor: dew_point | fields: lon, reading, unit, level Task: Retrieve value from air_quality whose qc is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070109
train
v1
Sensor network script: Node: rainfall | code: mst | fields: lat, ts, type, reading Sensor: cloud_cover | fields: lon, value, qc, level Task: Retrieve lat from rainfall whose depth is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070110
train
v3
Sensor network script: Node: sunlight | code: mst | fields: type, reading, unit, level Sensor: humidity | fields: reading, ts, lat, qc Task: Fetch lon from sunlight where value is greater than the count of of reading in humidity for matching ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070111
train
v2
Sensor network script: Node: temperature | code: prt | fields: depth, unit, ts, value Sensor: rainfall | fields: depth, lon, lat, reading Task: Retrieve lat from temperature that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070112
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: unit, reading, qc, value Sensor: sunlight | fields: value, reading, level, depth Task: Retrieve reading from snow_depth that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070113
train
v3
Sensor network script: Node: uv_index | code: gst | fields: unit, lat, lon, type Sensor: frost | fields: level, reading, lat, type Task: Retrieve lat from uv_index with depth above the AVG(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070114
train
v3
Sensor network script: Node: pressure | code: mst | fields: lat, lon, qc, reading Sensor: drought_index | fields: value, type, lat, qc Task: Get lat from pressure where reading exceeds the count of depth from drought_index for the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070115
train
v2
Sensor network script: Node: air_quality | code: ref | fields: lat, reading, qc, value Sensor: turbidity | fields: qc, reading, unit, lat Task: Get depth from air_quality where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070116
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, level, qc, ts Sensor: turbidity | fields: depth, unit, type, lon Task: Fetch depth from soil_moisture where unit exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070117
train
v3
Sensor network script: Node: frost | code: ref | fields: value, type, ts, lat Sensor: sunlight | fields: qc, unit, ts, type Task: Retrieve depth from frost with value above the AVG(depth) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070118
train
v3
Sensor network script: Node: evaporation | code: stn | fields: depth, lat, value, qc Sensor: soil_moisture | fields: depth, ts, value, level Task: Retrieve lon from evaporation with depth above the MAX(reading) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070119
train
v3
Sensor network script: Node: dew_point | code: ref | fields: level, depth, ts, unit Sensor: cloud_cover | fields: qc, level, lon, reading Task: Retrieve reading from dew_point with reading above the MAX(depth) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070120
train
v2
Sensor network script: Node: uv_index | code: stn | fields: unit, ts, lat, reading Sensor: lightning | fields: qc, value, lat, lon Task: Retrieve value from uv_index that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070121
train
v1
Sensor network script: Node: humidity | code: gst | fields: ts, value, lat, depth Sensor: evaporation | fields: depth, type, level, value Task: Fetch lat from humidity where type exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070122
train
v1
Sensor network script: Node: rainfall | code: prt | fields: type, level, qc, lon Sensor: sunlight | fields: lon, ts, type, depth Task: Retrieve value from rainfall whose type is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070123
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: depth, value, type, qc Sensor: frost | fields: depth, lon, reading, level Task: Fetch depth from snow_depth where value is greater than the maximum of reading in frost for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070124
train
v3
Sensor network script: Node: lightning | code: mst | fields: ts, type, value, qc Sensor: temperature | fields: qc, lat, reading, lon Task: Retrieve reading from lightning with depth above the MAX(reading) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070125
train
v2
Sensor network script: Node: humidity | code: thr | fields: depth, lon, unit, qc Sensor: dew_point | fields: value, reading, qc, lon Task: Retrieve value from humidity that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070126
train
v1
Sensor network script: Node: turbidity | code: ref | fields: lon, unit, ts, level Sensor: pressure | fields: value, lon, qc, unit Task: Fetch lat from turbidity where depth exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070127
train
v3
Sensor network script: Node: sunlight | code: hub | fields: depth, ts, value, reading Sensor: air_quality | fields: reading, depth, qc, ts Task: Retrieve value from sunlight with depth above the AVG(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070128
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: value, lat, level, type Sensor: cloud_cover | fields: value, type, lon, ts Task: Fetch level from wind_speed where depth exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070129
train
v3
Sensor network script: Node: frost | code: gst | fields: depth, lat, lon, qc Sensor: temperature | fields: type, unit, lat, qc Task: Get level from frost where reading exceeds the maximum reading from temperature for the same qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="level", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070130
train
v1
Sensor network script: Node: frost | code: clr | fields: value, unit, qc, lat Sensor: humidity | fields: ts, lat, type, qc Task: Get depth from frost where qc appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070131
train
v3
Sensor network script: Node: sunlight | code: thr | fields: value, ts, level, qc Sensor: lightning | fields: reading, level, depth, value Task: Fetch reading from sunlight where value is greater than the minimum of reading in lightning for matching qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070132
train
v2
Sensor network script: Node: drought_index | code: clr | fields: type, lat, unit, level Sensor: lightning | fields: lat, level, reading, value Task: Retrieve depth from drought_index that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070133
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lon, type, unit, level Sensor: frost | fields: lat, ts, lon, depth Task: Fetch value from cloud_cover where depth exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070134
train
v1
Sensor network script: Node: frost | code: mst | fields: reading, type, value, level Sensor: dew_point | fields: value, type, ts, qc Task: Get level from frost where unit appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070135
train
v1
Sensor network script: Node: evaporation | code: stn | fields: lat, ts, qc, depth Sensor: wind_speed | fields: type, unit, depth, lon Task: Retrieve level from evaporation whose type is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070136
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: qc, lat, lon, level Sensor: uv_index | fields: unit, reading, lat, ts Task: Get level from snow_depth where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070137
train
v3
Sensor network script: Node: temperature | code: ref | fields: type, depth, unit, lat Sensor: lightning | fields: unit, lat, level, qc Task: Retrieve reading from temperature with value above the COUNT(reading) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070138
train
v1
Sensor network script: Node: visibility | code: ref | fields: depth, reading, lat, unit Sensor: frost | fields: depth, unit, lon, type Task: Fetch depth from visibility where unit exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070139
train
v3
Sensor network script: Node: rainfall | code: hub | fields: value, lon, reading, level Sensor: cloud_cover | fields: qc, unit, value, depth Task: Fetch depth from rainfall where value is greater than the average of depth in cloud_cover for matching ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070140
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: type, level, ts, unit Sensor: wind_speed | fields: ts, lon, level, unit Task: Fetch lat from snow_depth where depth exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070141
train
v1
Sensor network script: Node: evaporation | code: ref | fields: depth, lon, qc, type Sensor: dew_point | fields: lat, unit, type, ts Task: Fetch reading from evaporation where type exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070142
train
v3
Sensor network script: Node: uv_index | code: stn | fields: lat, reading, type, qc Sensor: dew_point | fields: value, lat, level, lon Task: Retrieve value from uv_index with reading above the AVG(reading) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070143
train
v2
Sensor network script: Node: dew_point | code: prt | fields: value, lon, ts, qc Sensor: turbidity | fields: unit, value, type, ts Task: Retrieve depth from dew_point that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070144
train
v3
Sensor network script: Node: evaporation | code: prt | fields: unit, qc, reading, value Sensor: soil_moisture | fields: level, depth, type, value Task: Get lon from evaporation where depth exceeds the total reading from soil_moisture for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070145
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: ts, unit, depth, qc Sensor: visibility | fields: reading, ts, value, lon Task: Fetch lat from snow_depth where type exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070146
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lat, lon, reading, value Sensor: air_quality | fields: depth, level, value, lat Task: Fetch reading from rainfall that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070147
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: reading, qc, value, level Sensor: air_quality | fields: depth, level, ts, lat Task: Fetch depth from cloud_cover where value is greater than the count of of reading in air_quality for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070148
train
v1
Sensor network script: Node: dew_point | code: ref | fields: type, reading, ts, level Sensor: visibility | fields: unit, ts, level, reading Task: Retrieve level from dew_point whose depth is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070149
train
v1
Sensor network script: Node: evaporation | code: thr | fields: reading, value, lat, depth Sensor: wind_speed | fields: qc, reading, value, lon Task: Fetch level from evaporation where ts exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070150
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: depth, reading, type, qc Sensor: lightning | fields: reading, depth, unit, value Task: Retrieve value from snow_depth that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070151
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: unit, lat, level, lon Sensor: uv_index | fields: qc, value, reading, type Task: Get level from snow_depth where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070152
train
v3
Sensor network script: Node: evaporation | code: prt | fields: lon, level, value, reading Sensor: lightning | fields: lon, lat, ts, unit Task: Get reading from evaporation where value exceeds the minimum value from lightning for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="qc"), ), 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": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070153
train
v2
Sensor network script: Node: rainfall | code: mst | fields: ts, lat, reading, type Sensor: snow_depth | fields: qc, reading, depth, lat Task: Get value from rainfall where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070154
train
v3
Sensor network script: Node: temperature | code: hub | fields: qc, lat, reading, lon Sensor: air_quality | fields: depth, qc, type, value Task: Retrieve lat from temperature with value above the MAX(reading) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070155
train
v2
Sensor network script: Node: temperature | code: prt | fields: level, value, depth, reading Sensor: sunlight | fields: type, level, unit, qc Task: Fetch reading from temperature that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070156
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: level, qc, lon, depth Sensor: frost | fields: ts, type, unit, lat Task: Fetch depth from wind_speed where depth exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070157
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, level, type, depth Sensor: soil_moisture | fields: ts, value, type, qc Task: Fetch lat from rainfall where ts exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070158
train
v3
Sensor network script: Node: drought_index | code: prt | fields: level, ts, value, depth Sensor: snow_depth | fields: reading, type, ts, level Task: Fetch level from drought_index where reading is greater than the total of depth in snow_depth for matching depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070159
train
v1
Sensor network script: Node: drought_index | code: prt | fields: lat, value, qc, ts Sensor: lightning | fields: reading, lat, depth, type Task: Get value from drought_index where depth appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070160
train
v2
Sensor network script: Node: sunlight | code: mst | fields: reading, depth, level, unit Sensor: snow_depth | fields: lat, qc, ts, level Task: Retrieve value from sunlight that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070161
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: lon, unit, depth, qc Sensor: air_quality | fields: level, depth, value, lon Task: Get reading from snow_depth where depth exceeds the minimum depth from air_quality for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070162
train
v2
Sensor network script: Node: air_quality | code: ref | fields: value, lat, reading, depth Sensor: temperature | fields: qc, reading, ts, lon Task: Fetch reading from air_quality that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070163
train
v1
Sensor network script: Node: dew_point | code: stn | fields: type, reading, level, lon Sensor: lightning | fields: lat, qc, ts, depth Task: Get value from dew_point where ts appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070164
train
v3
Sensor network script: Node: visibility | code: clr | fields: level, reading, lon, ts Sensor: cloud_cover | fields: lat, type, unit, qc Task: Fetch lat from visibility where value is greater than the minimum of value in cloud_cover for matching unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070165
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, unit, qc, reading Sensor: sunlight | fields: ts, level, unit, depth Task: Fetch lat from turbidity where depth exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070166
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: level, lat, ts, reading Sensor: dew_point | fields: lat, type, value, ts Task: Get level from soil_moisture where depth exceeds the maximum depth from dew_point for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070167
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lat, qc, value, ts Sensor: cloud_cover | fields: value, type, unit, depth Task: Get depth from air_quality where unit appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070168
train
v1
Sensor network script: Node: dew_point | code: stn | fields: depth, lon, reading, type Sensor: uv_index | fields: ts, level, depth, value Task: Retrieve lon from dew_point whose depth is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070169
train
v1
Sensor network script: Node: drought_index | code: stn | fields: ts, depth, reading, lat Sensor: sunlight | fields: level, depth, lon, value Task: Fetch level from drought_index where qc exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070170
train
v3
Sensor network script: Node: uv_index | code: thr | fields: qc, reading, type, lat Sensor: sunlight | fields: lon, reading, ts, lat Task: Fetch level from uv_index where value is greater than the minimum of value in sunlight for matching qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070171
train
v3
Sensor network script: Node: humidity | code: thr | fields: qc, lat, type, reading Sensor: sunlight | fields: lon, unit, qc, ts Task: Get lon from humidity where value exceeds the total depth from sunlight for the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070172
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: level, depth, value, unit Sensor: air_quality | fields: ts, lon, lat, unit Task: Get lon from soil_moisture where depth exceeds the minimum reading from air_quality for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070173
train
v2
Sensor network script: Node: evaporation | code: thr | fields: lat, value, level, depth Sensor: lightning | fields: qc, unit, reading, lat Task: Fetch lon from evaporation that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070174
train
v3
Sensor network script: Node: rainfall | code: thr | fields: qc, level, value, lon Sensor: dew_point | fields: unit, level, value, lat Task: Retrieve depth from rainfall with value above the COUNT(reading) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070175
train
v1
Sensor network script: Node: drought_index | code: ref | fields: value, type, level, unit Sensor: frost | fields: level, qc, lat, reading Task: Get level from drought_index where ts appears in frost readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070176
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: type, unit, reading, lon Sensor: snow_depth | fields: level, lon, unit, lat Task: Fetch reading from soil_moisture where reading is greater than the count of of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070177
train
v3
Sensor network script: Node: evaporation | code: ref | fields: lat, qc, lon, level Sensor: soil_moisture | fields: depth, reading, lon, value Task: Fetch reading from evaporation where reading is greater than the total of depth in soil_moisture for matching depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070178
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: value, lon, ts, reading Sensor: evaporation | fields: qc, lon, type, reading Task: Retrieve reading from snow_depth whose ts is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070179
train
v2
Sensor network script: Node: humidity | code: mst | fields: qc, lat, type, unit Sensor: air_quality | fields: type, lon, qc, unit Task: Get level from humidity where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070180
train
v3
Sensor network script: Node: drought_index | code: hub | fields: unit, lon, value, qc Sensor: air_quality | fields: depth, level, reading, ts Task: Fetch level from drought_index where value is greater than the minimum of reading in air_quality for matching qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070181
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lat, depth, ts, value Sensor: uv_index | fields: reading, type, level, lon Task: Get reading from wind_speed where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070182
train
v1
Sensor network script: Node: drought_index | code: ref | fields: qc, unit, depth, type Sensor: soil_moisture | fields: depth, reading, type, lat Task: Fetch reading from drought_index where qc exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070183
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: ts, reading, type, lat Sensor: drought_index | fields: reading, level, ts, depth Task: Get value from wind_speed where depth appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070184
train
v2
Sensor network script: Node: pressure | code: prt | fields: level, unit, ts, lon Sensor: snow_depth | fields: level, type, unit, lat Task: Retrieve value from pressure that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070185
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: unit, lat, qc, reading Sensor: lightning | fields: value, lat, reading, depth Task: Fetch lat from cloud_cover where depth is greater than the minimum of depth in lightning for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070186
train
v3
Sensor network script: Node: temperature | code: thr | fields: lat, ts, reading, unit Sensor: dew_point | fields: unit, value, lat, lon Task: Fetch lon from temperature where reading is greater than the total of reading in dew_point for matching unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070187
train
v1
Sensor network script: Node: air_quality | code: stn | fields: reading, lat, qc, type Sensor: snow_depth | fields: unit, qc, value, type Task: Fetch lat from air_quality where ts exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070188
train
v1
Sensor network script: Node: sunlight | code: gst | fields: lon, value, ts, unit Sensor: visibility | fields: unit, type, qc, value Task: Retrieve reading from sunlight whose qc is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070189
train
v1
Sensor network script: Node: air_quality | code: prt | fields: depth, level, reading, value Sensor: sunlight | fields: ts, level, type, reading Task: Fetch reading from air_quality where qc exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070190
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: lon, level, ts, lat Sensor: evaporation | fields: unit, level, ts, qc Task: Get depth from soil_moisture where depth exceeds the total reading from evaporation for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070191
train
v1
Sensor network script: Node: turbidity | code: clr | fields: value, lon, type, lat Sensor: wind_speed | fields: lat, reading, depth, ts Task: Fetch lon from turbidity where ts exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070192
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: value, level, depth, unit Sensor: turbidity | fields: lat, ts, qc, type Task: Fetch lat from wind_speed where depth is greater than the total of reading in turbidity for matching type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070193
train
v2
Sensor network script: Node: pressure | code: stn | fields: unit, type, level, reading Sensor: cloud_cover | fields: lat, qc, unit, type Task: Retrieve value from pressure that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070194
train
v3
Sensor network script: Node: lightning | code: hub | fields: reading, value, ts, unit Sensor: wind_speed | fields: depth, qc, type, lat Task: Get lon from lightning where value exceeds the minimum value from wind_speed for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070195
train
v3
Sensor network script: Node: visibility | code: mst | fields: lat, type, reading, level Sensor: drought_index | fields: value, unit, depth, qc Task: Fetch level from visibility where reading is greater than the maximum of value in drought_index for matching ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070196
train
v3
Sensor network script: Node: temperature | code: stn | fields: depth, lon, ts, reading Sensor: frost | fields: qc, reading, unit, lon Task: Retrieve value from temperature with depth above the COUNT(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070197
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: value, lon, qc, lat Sensor: visibility | fields: reading, value, lat, level Task: Retrieve level from cloud_cover that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070198
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: reading, unit, depth, ts Sensor: pressure | fields: ts, qc, unit, depth Task: Get value from soil_moisture where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070199
train