variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: lightning | code: hub | fields: unit, depth, value, ts Sensor: evaporation | fields: level, qc, unit, type Task: Retrieve value from lightning whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012900
train
v1
Sensor network script: Node: evaporation | code: stn | fields: value, lon, ts, qc Sensor: soil_moisture | fields: lat, type, value, qc Task: Retrieve depth from evaporation whose qc is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012901
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: value, ts, type, qc Sensor: air_quality | fields: depth, qc, type, reading Task: Get lat from snow_depth where qc appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012902
train
v1
Sensor network script: Node: humidity | code: prt | fields: lat, lon, qc, unit Sensor: wind_speed | fields: lat, qc, ts, reading Task: Fetch level from humidity where depth exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012903
train
v2
Sensor network script: Node: pressure | code: mst | fields: qc, lat, type, level Sensor: wind_speed | fields: lat, qc, level, lon Task: Retrieve lat from pressure that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012904
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: level, qc, type, depth Sensor: evaporation | fields: depth, level, unit, qc Task: Retrieve level from wind_speed with reading above the MAX(value) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012905
train
v3
Sensor network script: Node: evaporation | code: ref | fields: lat, depth, reading, level Sensor: soil_moisture | fields: reading, lat, depth, level Task: Get depth from evaporation where depth exceeds the count of value from soil_moisture for the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012906
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: type, lon, level, ts Sensor: pressure | fields: depth, qc, reading, type Task: Retrieve value from cloud_cover whose depth is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012907
train
v3
Sensor network script: Node: pressure | code: clr | fields: lat, value, qc, type Sensor: humidity | fields: qc, level, reading, lon Task: Get value from pressure where value exceeds the count of depth from humidity for the same qc. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012908
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: ts, level, value, lat Sensor: soil_moisture | fields: ts, unit, depth, lon Task: Fetch level from cloud_cover that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012909
train
v1
Sensor network script: Node: lightning | code: prt | fields: qc, level, unit, depth Sensor: humidity | fields: level, depth, type, value Task: Get lon from lightning where type appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012910
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: level, lon, unit, depth Sensor: snow_depth | fields: unit, reading, lon, level Task: Retrieve depth from soil_moisture with reading above the AVG(value) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012911
train
v2
Sensor network script: Node: pressure | code: stn | fields: depth, lat, type, ts Sensor: uv_index | fields: level, type, depth, qc Task: Fetch level from pressure that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012912
train
v1
Sensor network script: Node: pressure | code: ref | fields: ts, value, reading, unit Sensor: temperature | fields: qc, type, depth, lon Task: Get lon from pressure where ts appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012913
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: type, ts, qc, level Sensor: evaporation | fields: lon, depth, reading, lat Task: Get level from wind_speed where qc appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012914
train
v2
Sensor network script: Node: visibility | code: prt | fields: depth, type, value, reading Sensor: wind_speed | fields: unit, ts, type, value Task: Fetch lat from visibility that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012915
train
v3
Sensor network script: Node: lightning | code: ref | fields: depth, qc, unit, level Sensor: evaporation | fields: type, unit, value, qc Task: Retrieve lat from lightning with value above the COUNT(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012916
train
v2
Sensor network script: Node: frost | code: hub | fields: type, depth, qc, reading Sensor: temperature | fields: lon, qc, ts, value Task: Get depth from frost where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012917
train
v3
Sensor network script: Node: turbidity | code: gst | fields: type, lon, lat, ts Sensor: snow_depth | fields: depth, type, lon, lat Task: Get lat from turbidity where reading exceeds the average depth from snow_depth for the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012918
train
v2
Sensor network script: Node: humidity | code: gst | fields: lat, value, unit, level Sensor: air_quality | fields: unit, value, reading, depth Task: Get lat from humidity where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012919
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: qc, lat, ts, reading Sensor: air_quality | fields: reading, ts, qc, unit Task: Retrieve lon from soil_moisture with depth above the COUNT(depth) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012920
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: unit, qc, ts, reading Sensor: snow_depth | fields: lat, level, qc, type Task: Get level from soil_moisture where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012921
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: level, unit, reading, lon Sensor: lightning | fields: lat, value, qc, reading Task: Retrieve lon from snow_depth with reading above the MAX(value) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012922
train
v2
Sensor network script: Node: sunlight | code: prt | fields: lat, reading, ts, level Sensor: visibility | fields: qc, type, depth, reading Task: Get depth from sunlight where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012923
train
v3
Sensor network script: Node: sunlight | code: hub | fields: lat, type, reading, level Sensor: lightning | fields: qc, reading, depth, value Task: Get depth from sunlight where value exceeds the count of reading from lightning for the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012924
train
v2
Sensor network script: Node: pressure | code: gst | fields: type, reading, level, lon Sensor: frost | fields: lat, qc, lon, type Task: Retrieve depth from pressure that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012925
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: value, lon, reading, qc Sensor: air_quality | fields: depth, unit, type, lat Task: Retrieve reading from soil_moisture that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012926
train
v1
Sensor network script: Node: dew_point | code: gst | fields: level, value, depth, qc Sensor: turbidity | fields: depth, value, type, level Task: Fetch lat from dew_point where type exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012927
train
v2
Sensor network script: Node: temperature | code: prt | fields: level, unit, lon, depth Sensor: dew_point | fields: type, lat, value, level Task: Get value from temperature where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012928
train
v3
Sensor network script: Node: air_quality | code: thr | fields: ts, lat, value, level Sensor: evaporation | fields: lat, unit, ts, level Task: Fetch value from air_quality where value is greater than the average of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012929
train
v2
Sensor network script: Node: visibility | code: prt | fields: reading, type, unit, depth Sensor: frost | fields: unit, ts, type, lat Task: Get depth from visibility where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012930
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: lon, value, depth, ts Sensor: temperature | fields: lon, reading, depth, type Task: Retrieve lat from cloud_cover whose ts is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012931
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: qc, lat, depth, reading Sensor: humidity | fields: reading, ts, qc, lat Task: Retrieve value from cloud_cover whose type is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012932
train
v1
Sensor network script: Node: pressure | code: mst | fields: depth, lat, ts, lon Sensor: dew_point | fields: unit, reading, lat, qc Task: Get value from pressure where qc appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012933
train
v1
Sensor network script: Node: sunlight | code: ref | fields: value, qc, unit, depth Sensor: temperature | fields: depth, value, lat, level Task: Retrieve lon from sunlight whose type is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012934
train
v3
Sensor network script: Node: turbidity | code: mst | fields: depth, type, lon, value Sensor: evaporation | fields: type, lat, value, depth Task: Fetch value from turbidity where reading is greater than the minimum of reading in evaporation for matching type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012935
train
v3
Sensor network script: Node: visibility | code: stn | fields: lat, level, reading, value Sensor: cloud_cover | fields: reading, value, type, unit Task: Get level from visibility where depth exceeds the maximum depth from cloud_cover for the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012936
train
v3
Sensor network script: Node: temperature | code: stn | fields: depth, value, qc, unit Sensor: dew_point | fields: type, depth, level, lat Task: Fetch value from temperature where value is greater than the maximum of depth in dew_point for matching unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012937
train
v1
Sensor network script: Node: sunlight | code: ref | fields: reading, type, value, depth Sensor: air_quality | fields: qc, lon, value, type Task: Retrieve lat from sunlight whose unit is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012938
train
v3
Sensor network script: Node: turbidity | code: ref | fields: qc, type, lon, level Sensor: dew_point | fields: depth, lat, level, reading Task: Get level from turbidity where depth exceeds the minimum reading from dew_point for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012939
train
v3
Sensor network script: Node: pressure | code: thr | fields: depth, lat, qc, unit Sensor: wind_speed | fields: ts, unit, level, type Task: Get lon from pressure where value exceeds the minimum value from wind_speed for the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012940
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: lat, lon, type, depth Sensor: soil_moisture | fields: depth, qc, unit, value Task: Get depth from cloud_cover where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012941
train
v2
Sensor network script: Node: evaporation | code: ref | fields: depth, value, lat, qc Sensor: drought_index | fields: ts, reading, lat, value Task: Retrieve lon from evaporation that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012942
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: ts, qc, type, value Sensor: temperature | fields: value, level, ts, unit Task: Fetch lat from snow_depth where qc exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012943
train
v3
Sensor network script: Node: dew_point | code: hub | fields: reading, lat, lon, ts Sensor: pressure | fields: ts, level, value, depth Task: Get level from dew_point where depth exceeds the minimum depth from pressure for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012944
train
v2
Sensor network script: Node: temperature | code: hub | fields: reading, value, qc, lat Sensor: wind_speed | fields: ts, level, unit, lon Task: Fetch value from temperature that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012945
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lon, reading, ts, unit Sensor: wind_speed | fields: lon, depth, type, level Task: Get depth from drought_index where ts appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012946
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: type, depth, qc, lat Sensor: humidity | fields: ts, level, unit, value Task: Get reading from soil_moisture where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012947
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: unit, value, lat, type Sensor: visibility | fields: unit, depth, reading, lon Task: Get level from wind_speed where depth exceeds the total reading from visibility for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012948
train
v1
Sensor network script: Node: uv_index | code: prt | fields: ts, depth, lon, unit Sensor: sunlight | fields: lat, qc, lon, level Task: Get depth from uv_index where qc appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012949
train
v1
Sensor network script: Node: humidity | code: gst | fields: lat, qc, ts, level Sensor: frost | fields: unit, value, ts, lon Task: Retrieve depth from humidity whose type is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012950
train
v1
Sensor network script: Node: frost | code: prt | fields: lat, reading, value, level Sensor: wind_speed | fields: level, ts, value, unit Task: Retrieve level from frost whose unit is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012951
train
v2
Sensor network script: Node: visibility | code: hub | fields: type, lon, ts, value Sensor: turbidity | fields: value, lat, level, depth Task: Fetch reading from visibility that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012952
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: qc, unit, level, reading Sensor: dew_point | fields: qc, level, value, lon Task: Fetch lon from snow_depth where depth is greater than the maximum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012953
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: ts, depth, value, unit Sensor: sunlight | fields: type, unit, qc, lat Task: Retrieve reading from cloud_cover that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012954
train
v3
Sensor network script: Node: evaporation | code: mst | fields: lon, reading, depth, ts Sensor: drought_index | fields: ts, lat, level, type Task: Fetch lon from evaporation where value is greater than the count of of depth in drought_index for matching ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012955
train
v1
Sensor network script: Node: evaporation | code: clr | fields: lat, ts, unit, type Sensor: air_quality | fields: lat, type, qc, depth Task: Get level from evaporation where unit appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012956
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: lon, reading, qc, value Sensor: cloud_cover | fields: unit, level, reading, qc Task: Fetch level from snow_depth where ts exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012957
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: qc, value, ts, depth Sensor: humidity | fields: lat, type, lon, ts Task: Get lat from snow_depth where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012958
train
v1
Sensor network script: Node: drought_index | code: hub | fields: reading, value, lon, ts Sensor: sunlight | fields: unit, level, value, qc Task: Fetch value from drought_index where qc exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012959
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, qc, lat, level Sensor: rainfall | fields: ts, unit, depth, level Task: Retrieve depth from lightning with reading above the MAX(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012960
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: lat, level, ts, value Sensor: dew_point | fields: type, lat, depth, level Task: Fetch reading from cloud_cover where depth exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012961
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: unit, lat, value, level Sensor: dew_point | fields: lat, reading, level, qc Task: Get reading from wind_speed where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012962
train
v3
Sensor network script: Node: air_quality | code: thr | fields: reading, value, unit, ts Sensor: evaporation | fields: unit, type, reading, level Task: Retrieve value from air_quality with reading above the COUNT(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012963
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, reading, level, ts Sensor: dew_point | fields: ts, lat, value, unit Task: Fetch value from soil_moisture where depth is greater than the minimum of depth in dew_point for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "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_012964
train
v3
Sensor network script: Node: drought_index | code: thr | fields: unit, reading, lat, ts Sensor: humidity | fields: level, unit, lon, value Task: Fetch reading from drought_index where value is greater than the maximum of depth in humidity for matching depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012965
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lon, ts, type, unit Sensor: sunlight | fields: ts, type, reading, value Task: Fetch depth from uv_index where value is greater than the minimum of reading in sunlight for matching ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012966
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: type, reading, lon, unit Sensor: wind_speed | fields: type, lon, qc, lat Task: Retrieve level from snow_depth that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012967
train
v3
Sensor network script: Node: visibility | code: gst | fields: depth, ts, unit, type Sensor: rainfall | fields: unit, lat, type, lon Task: Fetch depth from visibility where value is greater than the average of reading in rainfall for matching depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012968
train
v3
Sensor network script: Node: temperature | code: clr | fields: lat, qc, ts, depth Sensor: sunlight | fields: type, lat, qc, reading Task: Retrieve value from temperature with depth above the SUM(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012969
train
v1
Sensor network script: Node: dew_point | code: ref | fields: qc, level, type, unit Sensor: drought_index | fields: level, qc, lat, unit Task: Retrieve level from dew_point whose ts is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012970
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, depth, ts, qc Sensor: wind_speed | fields: reading, unit, ts, depth Task: Get lat from sunlight where type appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012971
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: lat, ts, value, lon Sensor: soil_moisture | fields: type, depth, lat, qc Task: Get reading from cloud_cover where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012972
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: type, unit, qc, value Sensor: uv_index | fields: reading, unit, ts, value Task: Retrieve level from soil_moisture with reading above the COUNT(value) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012973
train
v2
Sensor network script: Node: dew_point | code: ref | fields: reading, level, value, depth Sensor: visibility | fields: lat, reading, qc, depth Task: Retrieve lon from dew_point that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012974
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: reading, depth, ts, unit Sensor: lightning | fields: unit, value, type, ts Task: Get lat from wind_speed where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "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_012975
train
v3
Sensor network script: Node: air_quality | code: gst | fields: lon, level, qc, depth Sensor: visibility | fields: value, qc, level, type Task: Retrieve depth from air_quality with reading above the MIN(depth) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012976
train
v3
Sensor network script: Node: lightning | code: mst | fields: lon, type, level, qc Sensor: uv_index | fields: level, unit, qc, lon Task: Retrieve lon from lightning with depth above the SUM(reading) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012977
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: value, qc, depth, type Sensor: dew_point | fields: unit, lat, type, lon Task: Retrieve lat from soil_moisture that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012978
train
v3
Sensor network script: Node: pressure | code: clr | fields: value, lat, type, unit Sensor: turbidity | fields: depth, ts, type, reading Task: Fetch lat from pressure where value is greater than the average of reading in turbidity for matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012979
train
v3
Sensor network script: Node: turbidity | code: mst | fields: qc, type, level, value Sensor: drought_index | fields: ts, value, lon, unit Task: Get level from turbidity where value exceeds the total depth from drought_index for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012980
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: value, level, qc, lat Sensor: cloud_cover | fields: depth, type, ts, unit Task: Fetch level from soil_moisture where unit exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012981
train
v2
Sensor network script: Node: visibility | code: ref | fields: ts, depth, value, qc Sensor: humidity | fields: level, lon, lat, depth Task: Get value from visibility where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012982
train
v2
Sensor network script: Node: temperature | code: mst | fields: reading, lon, lat, qc Sensor: air_quality | fields: level, value, type, lat Task: Get depth from temperature where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012983
train
v3
Sensor network script: Node: sunlight | code: ref | fields: reading, lat, type, qc Sensor: soil_moisture | fields: unit, type, ts, value Task: Get lat from sunlight where value exceeds the total depth from soil_moisture for the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012984
train
v1
Sensor network script: Node: uv_index | code: ref | fields: unit, reading, depth, value Sensor: drought_index | fields: lat, unit, ts, lon Task: Fetch lon from uv_index where ts exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012985
train
v3
Sensor network script: Node: temperature | code: prt | fields: unit, qc, ts, type Sensor: wind_speed | fields: ts, type, depth, qc Task: Get reading from temperature where value exceeds the count of reading from wind_speed for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012986
train
v1
Sensor network script: Node: drought_index | code: thr | fields: level, qc, value, lon Sensor: frost | fields: unit, qc, value, ts Task: Retrieve lon from drought_index whose depth is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012987
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: lon, ts, depth, unit Sensor: drought_index | fields: lon, depth, qc, reading Task: Retrieve level from wind_speed with reading above the MIN(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012988
train
v1
Sensor network script: Node: sunlight | code: clr | fields: type, ts, reading, lon Sensor: drought_index | fields: type, lon, qc, lat Task: Fetch depth from sunlight where unit exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012989
train
v3
Sensor network script: Node: frost | code: thr | fields: unit, reading, value, lat Sensor: soil_moisture | fields: depth, reading, value, qc Task: Retrieve depth from frost with value above the AVG(reading) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012990
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lat, type, value, lon Sensor: rainfall | fields: lon, level, lat, value Task: Fetch value from snow_depth where value is greater than the minimum of reading in rainfall for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012991
train
v3
Sensor network script: Node: uv_index | code: mst | fields: reading, level, type, ts Sensor: air_quality | fields: qc, depth, unit, lon Task: Get level from uv_index where value exceeds the average depth from air_quality for the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012992
train
v3
Sensor network script: Node: drought_index | code: clr | fields: type, depth, value, qc Sensor: uv_index | fields: value, qc, lon, depth Task: Retrieve value from drought_index with depth above the COUNT(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012993
train
v1
Sensor network script: Node: air_quality | code: ref | fields: lat, ts, type, level Sensor: pressure | fields: type, unit, lon, value Task: Retrieve lat from air_quality whose type is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012994
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: lat, qc, reading, type Sensor: uv_index | fields: level, qc, depth, reading Task: Retrieve depth from soil_moisture that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012995
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: level, ts, depth, reading Sensor: uv_index | fields: lat, reading, level, depth Task: Fetch depth from wind_speed where ts exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012996
train
v2
Sensor network script: Node: pressure | code: hub | fields: qc, ts, lon, lat Sensor: air_quality | fields: ts, qc, value, reading Task: Retrieve lon from pressure that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012997
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: value, lat, depth, type Sensor: frost | fields: value, lat, lon, reading Task: Retrieve reading from wind_speed that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012998
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: reading, unit, level, ts Sensor: lightning | fields: unit, ts, level, qc Task: Retrieve depth from snow_depth that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012999
train