variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: pressure | code: stn | fields: depth, unit, type, lon Sensor: snow_depth | fields: ts, level, lon, lat Task: Retrieve reading from pressure that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008000
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: level, qc, reading, ts Sensor: cloud_cover | fields: unit, lon, depth, type Task: Fetch reading from soil_moisture where unit exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008001
train
v1
Sensor network script: Node: visibility | code: hub | fields: depth, lat, lon, qc Sensor: rainfall | fields: ts, depth, level, lat Task: Get lat from visibility where type appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008002
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: depth, reading, lon, type Sensor: visibility | fields: qc, unit, reading, level Task: Fetch depth from cloud_cover where value is greater than the maximum of depth in visibility for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008003
train
v3
Sensor network script: Node: rainfall | code: hub | fields: level, type, lon, unit Sensor: lightning | fields: unit, level, reading, lon Task: Fetch value from rainfall where depth is greater than the total of reading in lightning for matching ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008004
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lat, ts, type, reading Sensor: visibility | fields: value, lat, ts, level Task: Fetch lon from cloud_cover where value is greater than the minimum of depth in visibility for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008005
train
v1
Sensor network script: Node: dew_point | code: prt | fields: level, lat, lon, unit Sensor: rainfall | fields: lon, depth, lat, level Task: Fetch lon from dew_point where ts exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008006
train
v1
Sensor network script: Node: dew_point | code: hub | fields: lon, ts, reading, qc Sensor: visibility | fields: value, reading, unit, lon Task: Retrieve lon from dew_point whose depth is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008007
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: ts, depth, value, unit Sensor: frost | fields: qc, lon, level, unit Task: Fetch level from soil_moisture where reading is greater than the total of depth in frost for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008008
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: lon, ts, level, unit Sensor: temperature | fields: depth, unit, lon, value Task: Retrieve reading from wind_speed that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008009
train
v2
Sensor network script: Node: temperature | code: thr | fields: lat, depth, ts, type Sensor: evaporation | fields: qc, lon, ts, type Task: Fetch depth from temperature that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008010
train
v1
Sensor network script: Node: pressure | code: stn | fields: lon, lat, type, ts Sensor: evaporation | fields: qc, reading, value, level Task: Fetch lon from pressure where depth exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008011
train
v1
Sensor network script: Node: visibility | code: gst | fields: lon, ts, level, type Sensor: turbidity | fields: level, value, lat, depth Task: Retrieve level from visibility whose qc is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008012
train
v2
Sensor network script: Node: dew_point | code: gst | fields: depth, type, reading, ts Sensor: air_quality | fields: type, value, unit, lat Task: Retrieve depth from dew_point that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008013
train
v3
Sensor network script: Node: uv_index | code: prt | fields: type, reading, level, qc Sensor: frost | fields: ts, depth, level, type Task: Fetch reading from uv_index where reading is greater than the total of value in frost for matching type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008014
train
v1
Sensor network script: Node: pressure | code: ref | fields: qc, ts, value, reading Sensor: temperature | fields: depth, lat, reading, unit Task: Retrieve level from pressure whose ts is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008015
train
v1
Sensor network script: Node: visibility | code: thr | fields: qc, level, lon, type Sensor: snow_depth | fields: qc, value, depth, level Task: Fetch reading from visibility where type exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008016
train
v1
Sensor network script: Node: frost | code: clr | fields: type, qc, lon, unit Sensor: evaporation | fields: level, unit, qc, lon Task: Get lat from frost where depth appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008017
train
v1
Sensor network script: Node: rainfall | code: stn | fields: ts, depth, type, qc Sensor: air_quality | fields: level, qc, depth, type Task: Get level from rainfall where type appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008018
train
v2
Sensor network script: Node: uv_index | code: clr | fields: unit, lat, reading, depth Sensor: evaporation | fields: qc, reading, lat, unit Task: Retrieve lat from uv_index that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008019
train
v3
Sensor network script: Node: lightning | code: ref | fields: type, reading, ts, value Sensor: dew_point | fields: ts, lat, value, level Task: Fetch reading from lightning where reading is greater than the minimum of reading in dew_point for matching depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008020
train
v1
Sensor network script: Node: temperature | code: thr | fields: lat, lon, type, depth Sensor: dew_point | fields: level, reading, lat, depth Task: Get level from temperature where type appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008021
train
v1
Sensor network script: Node: lightning | code: ref | fields: reading, ts, value, lat Sensor: wind_speed | fields: lon, unit, value, level Task: Retrieve lon from lightning whose type is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008022
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: reading, qc, value, unit Sensor: cloud_cover | fields: level, unit, ts, lon Task: Get depth from snow_depth where value exceeds the maximum reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008023
train
v1
Sensor network script: Node: lightning | code: ref | fields: value, reading, ts, type Sensor: evaporation | fields: level, depth, type, ts Task: Get lon from lightning where depth appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008024
train
v1
Sensor network script: Node: temperature | code: thr | fields: type, depth, unit, lat Sensor: sunlight | fields: value, lon, depth, ts Task: Retrieve level from temperature whose depth is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008025
train
v3
Sensor network script: Node: pressure | code: thr | fields: level, depth, unit, ts Sensor: rainfall | fields: value, depth, level, lon Task: Fetch reading from pressure where depth is greater than the maximum of reading in rainfall for matching depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008026
train
v3
Sensor network script: Node: uv_index | code: prt | fields: lon, qc, ts, unit Sensor: snow_depth | fields: qc, unit, level, depth Task: Fetch level from uv_index where value is greater than the total of reading in snow_depth for matching depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008027
train
v1
Sensor network script: Node: lightning | code: mst | fields: lon, type, qc, reading Sensor: snow_depth | fields: depth, level, qc, lon Task: Fetch lat from lightning where unit exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008028
train
v3
Sensor network script: Node: frost | code: ref | fields: unit, lon, lat, depth Sensor: visibility | fields: type, level, depth, lon Task: Retrieve lon from frost with depth above the COUNT(value) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008029
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: type, ts, lon, level Sensor: air_quality | fields: depth, ts, reading, type Task: Retrieve value from cloud_cover whose ts is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008030
train
v3
Sensor network script: Node: visibility | code: gst | fields: qc, lon, type, lat Sensor: cloud_cover | fields: type, unit, level, ts Task: Get depth from visibility where depth exceeds the count of reading from cloud_cover for the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008031
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lon, reading, qc, ts Sensor: visibility | fields: type, unit, lon, lat Task: Retrieve level from dew_point that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008032
train
v3
Sensor network script: Node: sunlight | code: gst | fields: depth, lat, level, ts Sensor: soil_moisture | fields: lon, qc, value, reading Task: Fetch level from sunlight where value is greater than the average of reading in soil_moisture for matching depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "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_008033
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: lon, ts, depth, lat Sensor: temperature | fields: value, unit, ts, type Task: Get depth from snow_depth where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008034
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: ts, value, lon, qc Sensor: cloud_cover | fields: level, depth, qc, lat Task: Retrieve reading from soil_moisture with value above the COUNT(reading) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008035
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: type, value, unit, depth Sensor: sunlight | fields: reading, depth, value, ts Task: Retrieve value from soil_moisture whose qc is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008036
train
v3
Sensor network script: Node: evaporation | code: gst | fields: ts, depth, reading, unit Sensor: snow_depth | fields: unit, lon, ts, level Task: Fetch lon from evaporation where reading is greater than the minimum of reading in snow_depth for matching type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008037
train
v3
Sensor network script: Node: visibility | code: thr | fields: level, type, reading, lat Sensor: rainfall | fields: reading, lat, level, value Task: Fetch lat from visibility where value is greater than the total of value in rainfall for matching depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008038
train
v1
Sensor network script: Node: air_quality | code: prt | fields: level, reading, value, type Sensor: snow_depth | fields: lon, level, type, qc Task: Get lon from air_quality where depth appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008039
train
v2
Sensor network script: Node: dew_point | code: clr | fields: reading, lon, ts, level Sensor: temperature | fields: value, lon, lat, level Task: Retrieve reading from dew_point that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008040
train
v2
Sensor network script: Node: visibility | code: mst | fields: ts, type, reading, value Sensor: wind_speed | fields: reading, level, type, unit Task: Fetch reading from visibility that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008041
train
v1
Sensor network script: Node: lightning | code: ref | fields: type, reading, value, lon Sensor: soil_moisture | fields: lon, reading, value, lat Task: Retrieve reading from lightning whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008042
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: type, qc, ts, value Sensor: frost | fields: type, value, lon, depth Task: Retrieve lat from wind_speed with depth above the SUM(reading) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008043
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: level, depth, type, ts Sensor: frost | fields: unit, ts, value, reading Task: Retrieve depth from snow_depth that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008044
train
v3
Sensor network script: Node: lightning | code: mst | fields: unit, level, ts, type Sensor: soil_moisture | fields: level, depth, qc, reading Task: Get depth from lightning where value exceeds the count of value from soil_moisture for the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008045
train
v2
Sensor network script: Node: sunlight | code: clr | fields: unit, depth, lon, ts Sensor: lightning | fields: unit, type, lat, lon Task: Fetch reading from sunlight that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008046
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, value, lon, unit Sensor: visibility | fields: qc, ts, unit, reading Task: Retrieve reading from evaporation whose qc is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008047
train
v3
Sensor network script: Node: evaporation | code: ref | fields: qc, reading, lat, unit Sensor: turbidity | fields: unit, level, ts, qc Task: Fetch depth from evaporation where reading is greater than the minimum of depth in turbidity for matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008048
train
v2
Sensor network script: Node: lightning | code: clr | fields: lon, depth, ts, lat Sensor: frost | fields: type, lat, depth, ts Task: Get value from lightning where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008049
train
v3
Sensor network script: Node: temperature | code: prt | fields: lon, value, lat, qc Sensor: drought_index | fields: value, unit, ts, level Task: Fetch lat from temperature where reading is greater than the total of depth in drought_index for matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008050
train
v2
Sensor network script: Node: frost | code: prt | fields: lat, unit, lon, qc Sensor: rainfall | fields: value, reading, lat, qc Task: Retrieve depth from frost that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008051
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: lat, lon, reading, level Sensor: evaporation | fields: lat, reading, qc, ts Task: Fetch depth from cloud_cover that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008052
train
v3
Sensor network script: Node: evaporation | code: clr | fields: value, unit, qc, depth Sensor: turbidity | fields: level, reading, type, lon Task: Get value from evaporation where reading exceeds the minimum value from turbidity for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008053
train
v3
Sensor network script: Node: dew_point | code: hub | fields: value, type, level, unit Sensor: air_quality | fields: reading, qc, lat, value Task: Get lon from dew_point where depth exceeds the average value from air_quality for the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008054
train
v3
Sensor network script: Node: turbidity | code: stn | fields: depth, unit, reading, value Sensor: dew_point | fields: qc, depth, lon, unit Task: Retrieve lat from turbidity with reading above the MIN(value) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008055
train
v1
Sensor network script: Node: air_quality | code: clr | fields: value, level, reading, depth Sensor: rainfall | fields: level, value, lon, reading Task: Retrieve reading from air_quality whose qc is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008056
train
v2
Sensor network script: Node: evaporation | code: gst | fields: qc, value, depth, reading Sensor: lightning | fields: level, lon, value, type Task: Fetch depth from evaporation that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008057
train
v3
Sensor network script: Node: rainfall | code: gst | fields: lat, qc, reading, type Sensor: drought_index | fields: level, reading, lon, unit Task: Retrieve level from rainfall with reading above the MAX(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008058
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: unit, ts, lat, depth Sensor: dew_point | fields: lat, unit, reading, value Task: Get lat from soil_moisture where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008059
train
v3
Sensor network script: Node: rainfall | code: prt | fields: unit, level, reading, lat Sensor: snow_depth | fields: level, type, value, qc Task: Get reading from rainfall where value exceeds the maximum depth from snow_depth for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008060
train
v1
Sensor network script: Node: lightning | code: gst | fields: type, lat, level, depth Sensor: frost | fields: type, unit, level, qc Task: Fetch lat from lightning where depth exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008061
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lat, value, ts, reading Sensor: turbidity | fields: reading, lat, type, qc Task: Retrieve lon from cloud_cover whose depth is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008062
train
v2
Sensor network script: Node: dew_point | code: gst | fields: level, value, ts, depth Sensor: rainfall | fields: qc, reading, lat, depth Task: Get reading from dew_point where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008063
train
v1
Sensor network script: Node: sunlight | code: ref | fields: value, depth, ts, reading Sensor: frost | fields: unit, level, value, lon Task: Fetch lon from sunlight where type exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008064
train
v1
Sensor network script: Node: uv_index | code: hub | fields: qc, ts, unit, level Sensor: lightning | fields: qc, depth, ts, value Task: Fetch value from uv_index where qc exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008065
train
v1
Sensor network script: Node: humidity | code: ref | fields: lon, unit, depth, reading Sensor: air_quality | fields: reading, lon, value, unit Task: Get value from humidity where qc appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008066
train
v2
Sensor network script: Node: lightning | code: hub | fields: reading, depth, ts, unit Sensor: visibility | fields: level, lon, type, unit Task: Fetch reading from lightning that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008067
train
v1
Sensor network script: Node: frost | code: clr | fields: lon, depth, ts, level Sensor: evaporation | fields: reading, type, unit, qc Task: Get value from frost where unit appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008068
train
v3
Sensor network script: Node: evaporation | code: ref | fields: value, level, lat, reading Sensor: pressure | fields: ts, value, level, lon Task: Get value from evaporation where value exceeds the maximum reading from pressure for the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008069
train
v1
Sensor network script: Node: temperature | code: ref | fields: type, lon, reading, level Sensor: lightning | fields: qc, ts, lon, level Task: Get level from temperature where depth appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008070
train
v3
Sensor network script: Node: turbidity | code: ref | fields: reading, lat, ts, level Sensor: evaporation | fields: depth, level, reading, lat Task: Retrieve depth from turbidity with depth above the COUNT(depth) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008071
train
v3
Sensor network script: Node: frost | code: ref | fields: ts, lon, level, lat Sensor: sunlight | fields: lon, depth, reading, lat Task: Get depth from frost where value exceeds the count of reading from sunlight for the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008072
train
v2
Sensor network script: Node: turbidity | code: clr | fields: ts, qc, depth, value Sensor: frost | fields: depth, level, lon, ts Task: Get value from turbidity where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008073
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: ts, level, value, lat Sensor: evaporation | fields: ts, qc, lon, level Task: Retrieve reading from wind_speed that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008074
train
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, reading, value, depth Sensor: evaporation | fields: type, reading, unit, lon Task: Fetch value from dew_point where depth is greater than the count of of reading in evaporation for matching ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008075
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: unit, value, ts, lat Sensor: air_quality | fields: lon, level, depth, type Task: Fetch depth from soil_moisture that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008076
train
v1
Sensor network script: Node: turbidity | code: mst | fields: unit, qc, depth, lat Sensor: frost | fields: lat, qc, depth, level Task: Retrieve lat from turbidity whose qc is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008077
train
v3
Sensor network script: Node: visibility | code: thr | fields: reading, value, depth, level Sensor: evaporation | fields: depth, ts, value, reading Task: Retrieve depth from visibility with value above the COUNT(depth) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008078
train
v2
Sensor network script: Node: temperature | code: mst | fields: lon, ts, reading, type Sensor: wind_speed | fields: depth, value, unit, lon Task: Fetch lat from temperature that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008079
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, depth, reading, type Sensor: dew_point | fields: depth, lat, level, type Task: Get depth from air_quality where reading exceeds the total reading from dew_point for the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008080
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: lat, depth, level, reading Sensor: drought_index | fields: qc, lat, depth, lon Task: Get lon from cloud_cover where value exceeds the average reading from drought_index for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008081
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: type, qc, depth, lon Sensor: pressure | fields: lon, reading, ts, lat Task: Fetch lon from soil_moisture that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008082
train
v2
Sensor network script: Node: evaporation | code: hub | fields: unit, qc, lat, ts Sensor: frost | fields: unit, qc, ts, level Task: Fetch level from evaporation that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008083
train
v1
Sensor network script: Node: rainfall | code: stn | fields: type, lon, depth, unit Sensor: uv_index | fields: depth, ts, lon, lat Task: Fetch level from rainfall where ts exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008084
train
v3
Sensor network script: Node: temperature | code: stn | fields: type, depth, reading, lon Sensor: evaporation | fields: value, level, depth, lon Task: Get depth from temperature where value exceeds the minimum depth from evaporation for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008085
train
v2
Sensor network script: Node: dew_point | code: thr | fields: ts, lon, depth, lat Sensor: visibility | fields: unit, value, reading, depth Task: Fetch lat from dew_point that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008086
train
v1
Sensor network script: Node: sunlight | code: prt | fields: ts, reading, lon, lat Sensor: dew_point | fields: value, ts, reading, qc Task: Fetch reading from sunlight where depth exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008087
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: reading, lon, depth, unit Sensor: uv_index | fields: unit, reading, qc, depth Task: Retrieve reading from wind_speed that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008088
train
v3
Sensor network script: Node: temperature | code: ref | fields: depth, ts, value, lon Sensor: air_quality | fields: lon, depth, level, type Task: Retrieve lon from temperature with value above the MAX(depth) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008089
train
v3
Sensor network script: Node: uv_index | code: hub | fields: type, reading, qc, level Sensor: cloud_cover | fields: type, qc, ts, level Task: Fetch value from uv_index where depth is greater than the total of reading in cloud_cover for matching type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008090
train
v1
Sensor network script: Node: turbidity | code: stn | fields: unit, qc, reading, value Sensor: frost | fields: value, lat, type, unit Task: Fetch level from turbidity where ts exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008091
train
v3
Sensor network script: Node: pressure | code: thr | fields: lat, qc, ts, type Sensor: drought_index | fields: type, level, ts, depth Task: Retrieve lat from pressure with value above the MAX(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008092
train
v3
Sensor network script: Node: rainfall | code: hub | fields: reading, type, ts, depth Sensor: air_quality | fields: reading, type, lat, value Task: Get lat from rainfall where value exceeds the total depth from air_quality for the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008093
train
v3
Sensor network script: Node: uv_index | code: thr | fields: ts, unit, level, value Sensor: sunlight | fields: qc, unit, value, level Task: Fetch lon from uv_index where depth is greater than the total of value in sunlight for matching type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008094
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: value, qc, type, ts Sensor: air_quality | fields: unit, type, reading, lat Task: Fetch value from snow_depth where type exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008095
train
v3
Sensor network script: Node: dew_point | code: thr | fields: depth, lat, lon, value Sensor: pressure | fields: lon, depth, qc, level Task: Retrieve value from dew_point with value above the MIN(value) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008096
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: lon, ts, level, depth Sensor: pressure | fields: unit, lon, level, reading Task: Fetch lon from wind_speed where depth is greater than the minimum of reading in pressure for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008097
train
v1
Sensor network script: Node: lightning | code: hub | fields: lon, ts, level, type Sensor: cloud_cover | fields: lat, qc, ts, type Task: Retrieve lat from lightning whose ts is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008098
train
v1
Sensor network script: Node: visibility | code: clr | fields: ts, depth, unit, value Sensor: evaporation | fields: lat, ts, reading, qc Task: Retrieve lat from visibility whose unit is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008099
train