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: snow_depth | code: stn | fields: value, type, depth, lon Sensor: humidity | fields: qc, depth, ts, type Task: Get lat from snow_depth where reading exceeds the total depth from humidity for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075000
train
v3
Sensor network script: Node: drought_index | code: hub | fields: qc, level, ts, depth Sensor: sunlight | fields: type, reading, unit, lat Task: Get reading from drought_index where value exceeds the count of depth from sunlight for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075001
train
v3
Sensor network script: Node: air_quality | code: stn | fields: unit, type, qc, level Sensor: evaporation | fields: reading, depth, ts, level Task: Fetch value from air_quality where depth is greater than the count of of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075002
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lon, ts, lat, type Sensor: wind_speed | fields: ts, type, level, lat Task: Fetch reading from soil_moisture where depth is greater than the minimum of depth in wind_speed for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075003
train
v2
Sensor network script: Node: air_quality | code: hub | fields: level, lon, ts, unit Sensor: humidity | fields: level, lon, reading, depth Task: Retrieve level from air_quality that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075004
train
v1
Sensor network script: Node: uv_index | code: ref | fields: level, lat, ts, reading Sensor: humidity | fields: type, reading, level, lat Task: Fetch reading from uv_index where qc exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075005
train
v2
Sensor network script: Node: sunlight | code: clr | fields: lon, qc, value, level Sensor: drought_index | fields: unit, depth, value, level Task: Get depth from sunlight where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075006
train
v3
Sensor network script: Node: lightning | code: hub | fields: ts, unit, value, level Sensor: snow_depth | fields: depth, level, qc, lat Task: Retrieve lat from lightning with reading above the COUNT(depth) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075007
train
v3
Sensor network script: Node: frost | code: gst | fields: unit, depth, qc, reading Sensor: temperature | fields: lat, ts, value, lon Task: Get reading from frost where value exceeds the maximum reading from temperature for the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075008
train
v2
Sensor network script: Node: air_quality | code: stn | fields: ts, reading, lon, unit Sensor: turbidity | fields: lon, ts, lat, type Task: Retrieve lat from air_quality that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075009
train
v2
Sensor network script: Node: dew_point | code: thr | fields: level, type, lon, lat Sensor: lightning | fields: level, ts, value, type Task: Retrieve lat from dew_point that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075010
train
v3
Sensor network script: Node: evaporation | code: hub | fields: unit, value, qc, type Sensor: air_quality | fields: type, unit, depth, reading Task: Fetch lon from evaporation where reading is greater than the total of depth in air_quality for matching ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075011
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: ts, lat, type, depth Sensor: rainfall | fields: level, lon, unit, lat Task: Get lon from wind_speed where reading exceeds the minimum value from rainfall for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075012
train
v2
Sensor network script: Node: drought_index | code: stn | fields: qc, lon, ts, reading Sensor: air_quality | fields: reading, qc, unit, value Task: Retrieve lon from drought_index that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075013
train
v2
Sensor network script: Node: rainfall | code: prt | fields: lon, reading, type, value Sensor: pressure | fields: value, type, unit, lon Task: Fetch depth from rainfall that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075014
train
v2
Sensor network script: Node: temperature | code: gst | fields: unit, level, value, reading Sensor: frost | fields: unit, depth, level, qc Task: Get value from temperature where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075015
train
v3
Sensor network script: Node: rainfall | code: clr | fields: level, reading, depth, lat Sensor: lightning | fields: depth, lat, type, reading Task: Retrieve value from rainfall with depth above the MAX(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075016
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lat, lon, level, ts Sensor: cloud_cover | fields: ts, unit, reading, lon Task: Fetch value from uv_index where unit exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075017
train
v1
Sensor network script: Node: sunlight | code: mst | fields: lon, level, depth, qc Sensor: visibility | fields: value, ts, level, depth Task: Fetch reading from sunlight where unit exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075018
train
v1
Sensor network script: Node: lightning | code: gst | fields: reading, lon, value, lat Sensor: snow_depth | fields: unit, value, level, lat Task: Retrieve lon from lightning whose unit is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075019
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: lon, depth, lat, ts Sensor: humidity | fields: qc, level, ts, unit Task: Retrieve level from snow_depth whose unit is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075020
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: unit, ts, reading, type Sensor: evaporation | fields: lon, reading, depth, value Task: Fetch lat from snow_depth where reading is greater than the minimum of value in evaporation for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075021
train
v3
Sensor network script: Node: frost | code: thr | fields: unit, type, qc, value Sensor: uv_index | fields: reading, lon, ts, unit Task: Retrieve reading from frost with value above the AVG(depth) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "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_075022
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lat, value, lon, reading Sensor: wind_speed | fields: type, ts, unit, depth Task: Retrieve reading from rainfall with depth above the MIN(depth) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075023
train
v3
Sensor network script: Node: turbidity | code: stn | fields: lon, type, ts, qc Sensor: evaporation | fields: value, reading, unit, depth Task: Get lat from turbidity where depth exceeds the total reading from evaporation for the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075024
train
v3
Sensor network script: Node: drought_index | code: ref | fields: unit, value, lat, ts Sensor: humidity | fields: qc, type, reading, lat Task: Fetch depth from drought_index where value is greater than the minimum of reading in humidity for matching qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075025
train
v3
Sensor network script: Node: dew_point | code: prt | fields: lon, reading, type, qc Sensor: evaporation | fields: reading, lat, qc, lon Task: Get value from dew_point where value exceeds the total reading from evaporation for the same ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075026
train
v3
Sensor network script: Node: drought_index | code: mst | fields: depth, type, lat, lon Sensor: evaporation | fields: lat, value, ts, type Task: Retrieve lat from drought_index with depth above the AVG(depth) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075027
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, ts, reading, unit Sensor: lightning | fields: depth, reading, level, ts Task: Get lat from drought_index where depth exceeds the average depth from lightning for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075028
train
v3
Sensor network script: Node: air_quality | code: gst | fields: lat, depth, type, qc Sensor: drought_index | fields: unit, type, value, ts Task: Fetch lat from air_quality where value is greater than the count of of value in drought_index for matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075029
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: type, lat, ts, reading Sensor: rainfall | fields: lon, unit, level, qc Task: Fetch lat from wind_speed where unit exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075030
train
v3
Sensor network script: Node: temperature | code: gst | fields: lon, ts, depth, type Sensor: visibility | fields: unit, ts, qc, lon Task: Retrieve level from temperature with depth above the MAX(depth) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075031
train
v3
Sensor network script: Node: lightning | code: mst | fields: level, lon, type, ts Sensor: temperature | fields: level, type, lat, lon Task: Get reading from lightning where value exceeds the average value from temperature for the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075032
train
v3
Sensor network script: Node: turbidity | code: ref | fields: lon, type, unit, depth Sensor: lightning | fields: reading, value, level, type Task: Get lat from turbidity where value exceeds the minimum value from lightning for the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075033
train
v2
Sensor network script: Node: frost | code: mst | fields: level, reading, depth, type Sensor: temperature | fields: unit, level, ts, qc Task: Retrieve reading from frost that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075034
train
v1
Sensor network script: Node: uv_index | code: ref | fields: reading, qc, ts, depth Sensor: cloud_cover | fields: level, unit, qc, lon Task: Get reading from uv_index where depth appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075035
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: lat, unit, lon, type Sensor: pressure | fields: lon, depth, unit, level Task: Fetch lon from snow_depth that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075036
train
v1
Sensor network script: Node: drought_index | code: clr | fields: qc, depth, reading, value Sensor: lightning | fields: qc, type, value, ts Task: Retrieve lon from drought_index whose ts is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075037
train
v1
Sensor network script: Node: turbidity | code: thr | fields: lon, value, type, level Sensor: dew_point | fields: value, lon, ts, level Task: Retrieve depth from turbidity whose unit is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075038
train
v3
Sensor network script: Node: frost | code: thr | fields: lat, level, qc, ts Sensor: dew_point | fields: unit, value, lat, qc Task: Retrieve depth from frost with reading above the COUNT(value) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075039
train
v3
Sensor network script: Node: visibility | code: clr | fields: depth, unit, level, reading Sensor: dew_point | fields: level, lon, reading, lat Task: Get lat from visibility where depth exceeds the count of depth from dew_point for the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075040
train
v1
Sensor network script: Node: humidity | code: mst | fields: value, lon, lat, level Sensor: soil_moisture | fields: value, reading, qc, lat Task: Get lat from humidity where type appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075041
train
v3
Sensor network script: Node: sunlight | code: thr | fields: lat, qc, unit, depth Sensor: turbidity | fields: reading, lon, lat, qc Task: Retrieve value from sunlight with depth above the MAX(reading) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075042
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: type, depth, qc, lon Sensor: cloud_cover | fields: reading, value, lon, depth Task: Fetch lon from soil_moisture where value is greater than the total of reading in cloud_cover for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075043
train
v3
Sensor network script: Node: lightning | code: mst | fields: lat, level, type, value Sensor: snow_depth | fields: lat, type, lon, ts Task: Fetch value from lightning where value is greater than the average of value in snow_depth for matching unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "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_075044
train
v1
Sensor network script: Node: humidity | code: hub | fields: unit, type, lon, reading Sensor: temperature | fields: level, value, lat, type Task: Fetch lat from humidity where depth exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075045
train
v2
Sensor network script: Node: rainfall | code: ref | fields: lon, type, level, ts Sensor: pressure | fields: depth, ts, level, unit Task: Fetch level from rainfall that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075046
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: lon, ts, value, level Sensor: visibility | fields: depth, lat, lon, type Task: Fetch reading from cloud_cover that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075047
train
v3
Sensor network script: Node: temperature | code: prt | fields: value, level, depth, ts Sensor: visibility | fields: qc, level, ts, lon Task: Retrieve level from temperature with reading above the SUM(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075048
train
v2
Sensor network script: Node: temperature | code: stn | fields: lon, reading, level, type Sensor: evaporation | fields: ts, value, lat, depth Task: Retrieve value from temperature that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075049
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: reading, qc, lon, level Sensor: temperature | fields: reading, depth, lon, unit Task: Retrieve level from cloud_cover with depth above the AVG(value) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075050
train
v2
Sensor network script: Node: turbidity | code: gst | fields: level, type, lat, qc Sensor: lightning | fields: lon, level, unit, value Task: Get lon from turbidity where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075051
train
v2
Sensor network script: Node: turbidity | code: ref | fields: ts, level, depth, type Sensor: frost | fields: ts, qc, value, reading Task: Retrieve level from turbidity that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075052
train
v1
Sensor network script: Node: uv_index | code: mst | fields: type, value, qc, reading Sensor: frost | fields: qc, unit, level, lon Task: Retrieve depth from uv_index whose ts is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075053
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: level, ts, lon, type Sensor: humidity | fields: lon, level, unit, qc Task: Fetch value from snow_depth where reading is greater than the minimum of reading in humidity for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075054
train
v3
Sensor network script: Node: pressure | code: prt | fields: depth, ts, reading, unit Sensor: turbidity | fields: ts, lat, level, depth Task: Get depth from pressure where reading exceeds the total reading from turbidity for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075055
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: level, ts, lon, reading Sensor: frost | fields: lon, level, reading, depth Task: Get level from wind_speed where type appears in frost readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075056
train
v1
Sensor network script: Node: uv_index | code: gst | fields: ts, level, qc, type Sensor: humidity | fields: ts, unit, depth, level Task: Get lon from uv_index where ts appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075057
train
v3
Sensor network script: Node: temperature | code: clr | fields: unit, depth, type, qc Sensor: pressure | fields: reading, value, unit, lat Task: Get reading from temperature where value exceeds the count of reading from pressure for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075058
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: value, level, reading, qc Sensor: air_quality | fields: type, level, qc, lon Task: Fetch reading from snow_depth that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075059
train
v2
Sensor network script: Node: frost | code: thr | fields: type, lat, qc, value Sensor: cloud_cover | fields: reading, ts, unit, lat Task: Get level from frost where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075060
train
v3
Sensor network script: Node: sunlight | code: prt | fields: level, lon, type, unit Sensor: frost | fields: value, lon, qc, lat Task: Get lon from sunlight where reading exceeds the count of reading from frost for the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075061
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: lon, reading, ts, level Sensor: snow_depth | fields: level, lon, ts, qc Task: Get lon from wind_speed where qc appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075062
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, type, lon, reading Sensor: lightning | fields: type, reading, ts, depth Task: Retrieve value from visibility that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075063
train
v2
Sensor network script: Node: sunlight | code: ref | fields: reading, level, qc, type Sensor: uv_index | fields: qc, reading, type, lat Task: Retrieve lon from sunlight that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075064
train
v2
Sensor network script: Node: turbidity | code: ref | fields: qc, unit, value, depth Sensor: soil_moisture | fields: unit, qc, depth, type Task: Fetch lat from turbidity that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075065
train
v1
Sensor network script: Node: temperature | code: mst | fields: unit, level, ts, value Sensor: snow_depth | fields: lat, ts, unit, qc Task: Get reading from temperature where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075066
train
v3
Sensor network script: Node: rainfall | code: mst | fields: qc, depth, lat, lon Sensor: humidity | fields: depth, qc, level, value Task: Get value from rainfall where value exceeds the average reading from humidity for the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075067
train
v2
Sensor network script: Node: visibility | code: clr | fields: reading, unit, lon, lat Sensor: soil_moisture | fields: lon, qc, value, type Task: Retrieve value from visibility that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075068
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: lat, reading, qc, level Sensor: soil_moisture | fields: unit, level, lat, ts Task: Fetch lat from snow_depth that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075069
train
v1
Sensor network script: Node: pressure | code: ref | fields: depth, unit, level, qc Sensor: dew_point | fields: qc, type, ts, unit Task: Get lon from pressure where ts appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075070
train
v1
Sensor network script: Node: pressure | code: stn | fields: ts, qc, lat, unit Sensor: rainfall | fields: qc, lon, type, depth Task: Get lon from pressure where qc appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075071
train
v3
Sensor network script: Node: air_quality | code: ref | fields: type, level, ts, reading Sensor: drought_index | fields: qc, lat, value, depth Task: Retrieve lat from air_quality with depth above the MIN(depth) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075072
train
v1
Sensor network script: Node: humidity | code: hub | fields: depth, reading, type, qc Sensor: snow_depth | fields: depth, qc, lon, type Task: Get lon from humidity where qc appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075073
train
v1
Sensor network script: Node: rainfall | code: mst | fields: value, lon, depth, qc Sensor: temperature | fields: reading, unit, level, type Task: Get level from rainfall where qc appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075074
train
v2
Sensor network script: Node: air_quality | code: stn | fields: unit, qc, level, reading Sensor: dew_point | fields: lat, value, reading, type Task: Get value from air_quality where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075075
train
v1
Sensor network script: Node: temperature | code: clr | fields: lat, ts, unit, reading Sensor: dew_point | fields: value, unit, reading, lon Task: Fetch lon from temperature where depth exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075076
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, depth, lat, reading Sensor: cloud_cover | fields: reading, type, lon, value Task: Get level from uv_index where value exceeds the total value from cloud_cover for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075077
train
v3
Sensor network script: Node: rainfall | code: mst | fields: lat, type, lon, unit Sensor: sunlight | fields: value, lat, qc, reading Task: Retrieve level from rainfall with value above the MAX(value) of sunlight readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "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_075078
train
v2
Sensor network script: Node: lightning | code: thr | fields: unit, lat, type, qc Sensor: pressure | fields: value, level, ts, unit Task: Retrieve level from lightning that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075079
train
v1
Sensor network script: Node: dew_point | code: gst | fields: unit, lon, depth, level Sensor: temperature | fields: reading, lat, unit, type Task: Get lat from dew_point where qc appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075080
train
v1
Sensor network script: Node: drought_index | code: thr | fields: reading, qc, type, value Sensor: sunlight | fields: ts, unit, value, type Task: Retrieve reading from drought_index whose depth is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075081
train
v1
Sensor network script: Node: sunlight | code: hub | fields: ts, qc, lon, level Sensor: lightning | fields: unit, reading, value, level Task: Retrieve depth from sunlight whose ts is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075082
train
v2
Sensor network script: Node: lightning | code: gst | fields: unit, type, depth, lat Sensor: turbidity | fields: unit, ts, reading, lat Task: Get lon from lightning where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075083
train
v2
Sensor network script: Node: visibility | code: gst | fields: type, lat, level, reading Sensor: humidity | fields: unit, depth, ts, type Task: Fetch lat from visibility that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075084
train
v3
Sensor network script: Node: evaporation | code: ref | fields: qc, unit, level, lon Sensor: sunlight | fields: value, ts, level, reading Task: Fetch value from evaporation where depth is greater than the average of reading in sunlight for matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075085
train
v2
Sensor network script: Node: visibility | code: mst | fields: ts, qc, lat, unit Sensor: pressure | fields: qc, lat, unit, depth Task: Fetch lon from visibility that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075086
train
v1
Sensor network script: Node: air_quality | code: hub | fields: qc, type, depth, ts Sensor: sunlight | fields: lat, unit, depth, type Task: Fetch lon from air_quality where type exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075087
train
v1
Sensor network script: Node: frost | code: ref | fields: type, depth, value, lat Sensor: cloud_cover | fields: level, reading, lon, type Task: Get lat from frost where type appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075088
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, qc, depth, ts Sensor: humidity | fields: depth, unit, qc, level Task: Get value from uv_index where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075089
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: lat, lon, reading, ts Sensor: cloud_cover | fields: level, lat, depth, type Task: Retrieve level from wind_speed that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075090
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: reading, value, type, level Sensor: humidity | fields: ts, lon, reading, value Task: Retrieve depth from cloud_cover that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075091
train
v1
Sensor network script: Node: visibility | code: mst | fields: reading, value, ts, type Sensor: turbidity | fields: lon, type, depth, value Task: Retrieve lat from visibility whose qc is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075092
train
v1
Sensor network script: Node: temperature | code: hub | fields: qc, ts, lat, depth Sensor: wind_speed | fields: unit, qc, value, lon Task: Retrieve lat from temperature whose type is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075093
train
v1
Sensor network script: Node: humidity | code: thr | fields: qc, level, unit, lat Sensor: evaporation | fields: depth, lon, value, unit Task: Get depth from humidity where qc appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075094
train
v3
Sensor network script: Node: evaporation | code: hub | fields: depth, type, value, level Sensor: drought_index | fields: reading, level, ts, depth Task: Get level from evaporation where reading exceeds the minimum reading from drought_index for the same depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075095
train
v1
Sensor network script: Node: frost | code: prt | fields: qc, lon, reading, value Sensor: visibility | fields: level, lon, type, value Task: Fetch reading from frost where depth exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075096
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lat, unit, value, qc Sensor: air_quality | fields: unit, lon, level, reading Task: Retrieve lat from snow_depth with reading above the COUNT(depth) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075097
train
v2
Sensor network script: Node: turbidity | code: thr | fields: reading, value, qc, lat Sensor: soil_moisture | fields: lat, value, lon, reading Task: Fetch lat from turbidity that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075098
train
v2
Sensor network script: Node: humidity | code: prt | fields: depth, lon, level, qc Sensor: drought_index | fields: unit, value, level, reading Task: Fetch lon from humidity that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075099
train