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: air_quality | code: clr | fields: ts, value, lon, level Sensor: evaporation | fields: lon, type, level, depth Task: Retrieve depth from air_quality whose type is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060100
train
v3
Sensor network script: Node: pressure | code: ref | fields: unit, lat, qc, type Sensor: sunlight | fields: reading, qc, type, level Task: Fetch depth from pressure where value is greater than the maximum of value in sunlight for matching ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060101
train
v2
Sensor network script: Node: lightning | code: gst | fields: qc, reading, type, lat Sensor: humidity | fields: qc, value, level, ts Task: Get value from lightning where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060102
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: ts, level, qc, lat Sensor: snow_depth | fields: ts, lon, value, depth Task: Fetch lat from cloud_cover where value is greater than the count of of depth in snow_depth for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060103
train
v3
Sensor network script: Node: turbidity | code: ref | fields: unit, depth, level, value Sensor: snow_depth | fields: value, depth, ts, level Task: Retrieve lon from turbidity with value above the SUM(value) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060104
train
v2
Sensor network script: Node: humidity | code: clr | fields: depth, lat, qc, type Sensor: uv_index | fields: lat, ts, type, reading Task: Fetch lon from humidity that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060105
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: level, qc, unit, depth Sensor: drought_index | fields: qc, depth, ts, unit Task: Get level from soil_moisture where qc appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060106
train
v2
Sensor network script: Node: visibility | code: clr | fields: ts, qc, level, unit Sensor: drought_index | fields: qc, reading, depth, unit Task: Retrieve value from visibility that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060107
train
v3
Sensor network script: Node: lightning | code: hub | fields: value, lat, level, unit Sensor: wind_speed | fields: depth, ts, qc, value Task: Fetch depth from lightning where value is greater than the total of value in wind_speed for matching type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060108
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lon, ts, unit, level Sensor: sunlight | fields: level, qc, ts, reading Task: Retrieve depth from turbidity with value above the COUNT(value) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060109
train
v3
Sensor network script: Node: evaporation | code: stn | fields: lon, level, ts, unit Sensor: dew_point | fields: ts, qc, unit, type Task: Retrieve level from evaporation with value above the SUM(reading) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060110
train
v3
Sensor network script: Node: evaporation | code: thr | fields: reading, qc, level, unit Sensor: pressure | fields: lon, type, depth, unit Task: Fetch lat from evaporation where value is greater than the total of reading in pressure for matching depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060111
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: value, lat, ts, depth Sensor: rainfall | fields: lat, depth, value, lon Task: Fetch level from snow_depth where qc exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060112
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lon, type, unit, level Sensor: lightning | fields: value, qc, type, level Task: Fetch value from wind_speed that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060113
train
v2
Sensor network script: Node: frost | code: prt | fields: depth, reading, value, ts Sensor: temperature | fields: reading, unit, qc, lon Task: Retrieve reading from frost that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060114
train
v1
Sensor network script: Node: rainfall | code: ref | fields: reading, value, level, qc Sensor: pressure | fields: value, unit, lon, level Task: Fetch reading from rainfall where depth exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060115
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: qc, level, depth, lon Sensor: wind_speed | fields: qc, level, lat, type Task: Fetch depth from snow_depth that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060116
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, value, depth, lon Sensor: snow_depth | fields: unit, level, depth, qc Task: Retrieve level from frost whose depth is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060117
train
v1
Sensor network script: Node: sunlight | code: thr | fields: ts, unit, lon, lat Sensor: wind_speed | fields: depth, level, lat, ts Task: Get depth from sunlight where qc appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060118
train
v3
Sensor network script: Node: pressure | code: hub | fields: qc, reading, unit, type Sensor: sunlight | fields: unit, type, ts, qc Task: Get level from pressure where value exceeds the maximum value from sunlight for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060119
train
v3
Sensor network script: Node: frost | code: gst | fields: value, lat, lon, depth Sensor: snow_depth | fields: reading, qc, unit, level Task: Fetch lat from frost where reading is greater than the minimum of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060120
train
v2
Sensor network script: Node: temperature | code: thr | fields: qc, unit, lon, type Sensor: dew_point | fields: value, reading, qc, depth Task: Retrieve lon from temperature that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060121
train
v1
Sensor network script: Node: drought_index | code: clr | fields: value, ts, qc, lon Sensor: soil_moisture | fields: type, lat, qc, value Task: Fetch lat from drought_index where qc exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060122
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: type, reading, qc, ts Sensor: visibility | fields: type, level, qc, ts Task: Fetch depth from wind_speed where unit exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060123
train
v2
Sensor network script: Node: frost | code: thr | fields: depth, reading, value, type Sensor: evaporation | fields: type, reading, ts, level Task: Fetch lat from frost that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060124
train
v1
Sensor network script: Node: evaporation | code: thr | fields: lat, value, level, qc Sensor: sunlight | fields: level, ts, lat, unit Task: Get level from evaporation where unit appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060125
train
v1
Sensor network script: Node: pressure | code: stn | fields: lon, reading, level, qc Sensor: temperature | fields: qc, lat, reading, level Task: Get lat from pressure where type appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060126
train
v1
Sensor network script: Node: humidity | code: hub | fields: depth, unit, lon, reading Sensor: turbidity | fields: type, lon, reading, level Task: Retrieve lat from humidity whose ts is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060127
train
v2
Sensor network script: Node: dew_point | code: stn | fields: unit, lat, ts, reading Sensor: soil_moisture | fields: ts, value, unit, type Task: Fetch level from dew_point that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060128
train
v2
Sensor network script: Node: drought_index | code: mst | fields: lon, ts, depth, level Sensor: rainfall | fields: ts, type, value, reading Task: Fetch level from drought_index that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060129
train
v3
Sensor network script: Node: drought_index | code: hub | fields: reading, ts, level, value Sensor: visibility | fields: type, depth, value, lat Task: Fetch value from drought_index where value is greater than the maximum of reading in visibility for matching unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060130
train
v2
Sensor network script: Node: drought_index | code: clr | fields: level, lat, unit, type Sensor: sunlight | fields: depth, reading, type, qc Task: Fetch lon from drought_index that have at least one corresponding sunlight measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060131
train
v1
Sensor network script: Node: lightning | code: thr | fields: qc, value, type, depth Sensor: sunlight | fields: value, lat, depth, ts Task: Get reading from lightning where unit appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060132
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: qc, reading, depth, unit Sensor: drought_index | fields: value, depth, lat, lon Task: Retrieve lat from snow_depth with reading above the COUNT(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060133
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: qc, ts, depth, unit Sensor: drought_index | fields: type, qc, lat, depth Task: Get value from snow_depth where depth appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060134
train
v3
Sensor network script: Node: humidity | code: prt | fields: level, unit, qc, ts Sensor: snow_depth | fields: ts, type, reading, qc Task: Get depth from humidity where depth exceeds the count of reading from snow_depth for the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060135
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: depth, reading, value, qc Sensor: humidity | fields: value, unit, lat, level Task: Retrieve reading from soil_moisture whose depth is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060136
train
v2
Sensor network script: Node: pressure | code: clr | fields: ts, unit, value, lon Sensor: soil_moisture | fields: ts, reading, level, unit Task: Retrieve reading from pressure that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "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_060137
train
v3
Sensor network script: Node: temperature | code: mst | fields: unit, lat, value, qc Sensor: air_quality | fields: ts, value, type, qc Task: Retrieve lon from temperature with reading above the MAX(reading) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060138
train
v3
Sensor network script: Node: humidity | code: mst | fields: value, ts, unit, lon Sensor: wind_speed | fields: depth, ts, lat, unit Task: Get value from humidity where reading exceeds the maximum value from wind_speed for the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060139
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, ts, depth, lon Sensor: humidity | fields: reading, qc, ts, unit Task: Retrieve level from air_quality with reading above the COUNT(reading) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060140
train
v2
Sensor network script: Node: humidity | code: ref | fields: unit, reading, ts, lat Sensor: cloud_cover | fields: lat, ts, value, unit Task: Fetch lat from humidity that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060141
train
v1
Sensor network script: Node: evaporation | code: prt | fields: ts, reading, unit, type Sensor: snow_depth | fields: reading, level, unit, value Task: Fetch reading from evaporation where unit exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060142
train
v3
Sensor network script: Node: pressure | code: gst | fields: depth, lat, type, unit Sensor: frost | fields: unit, lat, reading, value Task: Fetch lon from pressure where depth is greater than the count of of reading in frost for matching qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060143
train
v1
Sensor network script: Node: pressure | code: stn | fields: lat, lon, level, value Sensor: frost | fields: reading, ts, unit, qc Task: Retrieve value from pressure whose unit is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060144
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: unit, type, depth, reading Sensor: turbidity | fields: depth, level, lon, type Task: Get level from cloud_cover where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060145
train
v3
Sensor network script: Node: sunlight | code: hub | fields: lon, depth, level, ts Sensor: humidity | fields: qc, lon, type, depth Task: Fetch level from sunlight where reading is greater than the count of of reading in humidity for matching type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060146
train
v3
Sensor network script: Node: uv_index | code: hub | fields: qc, value, depth, lat Sensor: snow_depth | fields: reading, unit, lat, depth Task: Fetch reading from uv_index where value is greater than the minimum of value in snow_depth for matching unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060147
train
v3
Sensor network script: Node: sunlight | code: clr | fields: lon, value, type, ts Sensor: soil_moisture | fields: reading, ts, value, unit Task: Retrieve level from sunlight with reading above the MIN(depth) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060148
train
v2
Sensor network script: Node: uv_index | code: hub | fields: level, lon, ts, unit Sensor: visibility | fields: qc, depth, lon, lat Task: Retrieve level from uv_index that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060149
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: depth, reading, unit, lat Sensor: humidity | fields: level, value, lat, type Task: Fetch lat from wind_speed where depth is greater than the average of depth in humidity for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060150
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: level, depth, reading, qc Sensor: frost | fields: qc, lon, ts, type Task: Fetch level from wind_speed that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060151
train
v2
Sensor network script: Node: dew_point | code: prt | fields: value, ts, lon, lat Sensor: drought_index | fields: depth, level, ts, reading Task: Fetch lon from dew_point that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060152
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: level, lon, type, qc Sensor: turbidity | fields: lat, value, reading, unit Task: Get level from snow_depth where value exceeds the minimum value from turbidity for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060153
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, unit, qc, lon Sensor: pressure | fields: type, lon, qc, reading Task: Retrieve depth from uv_index that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060154
train
v1
Sensor network script: Node: humidity | code: stn | fields: unit, ts, qc, level Sensor: lightning | fields: value, depth, qc, unit Task: Retrieve lat from humidity whose qc is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060155
train
v3
Sensor network script: Node: lightning | code: ref | fields: unit, type, qc, level Sensor: visibility | fields: value, type, depth, lon Task: Retrieve depth from lightning with value above the COUNT(depth) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060156
train
v3
Sensor network script: Node: frost | code: thr | fields: ts, level, type, lon Sensor: cloud_cover | fields: lat, lon, depth, unit Task: Fetch level from frost where reading is greater than the total of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060157
train
v1
Sensor network script: Node: rainfall | code: ref | fields: value, lon, level, unit Sensor: snow_depth | fields: lat, reading, lon, ts Task: Fetch lon from rainfall where unit exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060158
train
v2
Sensor network script: Node: uv_index | code: ref | fields: reading, ts, level, lon Sensor: humidity | fields: lat, qc, unit, value Task: Fetch lon from uv_index that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060159
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: value, depth, qc, level Sensor: lightning | fields: type, value, qc, depth Task: Fetch lon from soil_moisture where type exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060160
train
v2
Sensor network script: Node: temperature | code: mst | fields: type, reading, level, unit Sensor: sunlight | fields: reading, ts, depth, lat Task: Get lat from temperature where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060161
train
v1
Sensor network script: Node: uv_index | code: clr | fields: unit, reading, qc, level Sensor: soil_moisture | fields: type, unit, lon, depth Task: Fetch value from uv_index where depth exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060162
train
v1
Sensor network script: Node: pressure | code: hub | fields: unit, qc, depth, lat Sensor: dew_point | fields: level, type, lat, ts Task: Retrieve lat from pressure whose qc is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060163
train
v1
Sensor network script: Node: uv_index | code: mst | fields: value, type, qc, ts Sensor: snow_depth | fields: lat, level, lon, ts Task: Get reading from uv_index where type appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060164
train
v2
Sensor network script: Node: evaporation | code: mst | fields: level, value, unit, depth Sensor: turbidity | fields: lat, level, lon, reading Task: Get depth from evaporation where a corresponding entry exists in turbidity with the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060165
train
v3
Sensor network script: Node: pressure | code: clr | fields: level, value, lon, type Sensor: dew_point | fields: lon, type, reading, qc Task: Get value from pressure where reading exceeds the maximum depth from dew_point for the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060166
train
v1
Sensor network script: Node: lightning | code: prt | fields: lon, ts, level, type Sensor: pressure | fields: reading, qc, value, type Task: Fetch level from lightning where depth exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060167
train
v3
Sensor network script: Node: sunlight | code: mst | fields: level, ts, lat, qc Sensor: lightning | fields: lon, type, lat, depth Task: Retrieve depth from sunlight with depth above the SUM(value) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060168
train
v2
Sensor network script: Node: uv_index | code: prt | fields: qc, unit, value, reading Sensor: rainfall | fields: qc, lon, level, unit Task: Retrieve level from uv_index that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060169
train
v2
Sensor network script: Node: rainfall | code: mst | fields: lat, value, depth, type Sensor: wind_speed | fields: qc, value, type, lon Task: Fetch level from rainfall that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060170
train
v2
Sensor network script: Node: visibility | code: gst | fields: level, ts, qc, unit Sensor: cloud_cover | fields: ts, qc, reading, unit Task: Fetch level from visibility that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060171
train
v1
Sensor network script: Node: rainfall | code: prt | fields: depth, type, qc, lat Sensor: pressure | fields: depth, reading, lat, value Task: Get value from rainfall where qc appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060172
train
v2
Sensor network script: Node: frost | code: mst | fields: reading, level, lon, ts Sensor: wind_speed | fields: qc, lat, level, ts Task: Retrieve lon from frost that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060173
train
v3
Sensor network script: Node: air_quality | code: ref | fields: level, ts, qc, type Sensor: snow_depth | fields: ts, type, reading, lon Task: Fetch depth from air_quality where depth is greater than the average of depth in snow_depth for matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060174
train
v3
Sensor network script: Node: drought_index | code: thr | fields: qc, ts, reading, type Sensor: wind_speed | fields: reading, lat, value, level Task: Retrieve lon from drought_index with value above the MIN(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060175
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: depth, level, unit, reading Sensor: temperature | fields: lat, lon, ts, unit Task: Get depth from wind_speed where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060176
train
v2
Sensor network script: Node: air_quality | code: clr | fields: lon, unit, qc, value Sensor: humidity | fields: value, lat, lon, qc Task: Get depth from air_quality where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060177
train
v1
Sensor network script: Node: turbidity | code: gst | fields: lon, lat, unit, ts Sensor: lightning | fields: reading, unit, depth, type Task: Retrieve lon from turbidity whose qc is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060178
train
v3
Sensor network script: Node: drought_index | code: hub | fields: qc, ts, reading, unit Sensor: rainfall | fields: reading, lon, depth, type Task: Fetch lat from drought_index where reading is greater than the maximum of value in rainfall for matching type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060179
train
v2
Sensor network script: Node: turbidity | code: gst | fields: qc, lat, unit, type Sensor: sunlight | fields: reading, qc, level, depth Task: Retrieve lon from turbidity that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060180
train
v1
Sensor network script: Node: lightning | code: stn | fields: reading, ts, lat, value Sensor: pressure | fields: type, reading, value, lon Task: Retrieve lon from lightning whose ts is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060181
train
v1
Sensor network script: Node: uv_index | code: clr | fields: unit, lat, qc, type Sensor: humidity | fields: unit, lon, qc, type Task: Get lat from uv_index where ts appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060182
train
v2
Sensor network script: Node: temperature | code: ref | fields: lon, value, qc, reading Sensor: turbidity | fields: type, level, depth, qc Task: Get lat from temperature where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060183
train
v1
Sensor network script: Node: air_quality | code: gst | fields: type, unit, ts, reading Sensor: snow_depth | fields: ts, level, lon, reading Task: Retrieve reading from air_quality whose ts is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060184
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: qc, lat, unit, ts Sensor: rainfall | fields: value, ts, lon, depth Task: Fetch depth from cloud_cover where reading is greater than the average of depth in rainfall for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060185
train
v3
Sensor network script: Node: rainfall | code: mst | fields: lat, qc, unit, lon Sensor: visibility | fields: lon, reading, qc, depth Task: Retrieve lon from rainfall with reading above the MIN(depth) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060186
train
v3
Sensor network script: Node: temperature | code: ref | fields: lon, level, depth, value Sensor: wind_speed | fields: level, lon, type, reading Task: Retrieve lat from temperature with reading above the COUNT(value) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060187
train
v2
Sensor network script: Node: frost | code: gst | fields: lon, depth, qc, lat Sensor: cloud_cover | fields: unit, ts, qc, type Task: Fetch lat from frost that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060188
train
v2
Sensor network script: Node: sunlight | code: ref | fields: lat, type, qc, unit Sensor: temperature | fields: value, lat, unit, type Task: Get lon from sunlight where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060189
train
v3
Sensor network script: Node: uv_index | code: prt | fields: unit, ts, qc, reading Sensor: sunlight | fields: level, reading, ts, unit Task: Get lon from uv_index where value exceeds the maximum reading from sunlight for the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060190
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: lon, ts, unit, type Sensor: snow_depth | fields: ts, reading, type, lat Task: Fetch reading from wind_speed where value is greater than the count of of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "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_060191
train
v1
Sensor network script: Node: turbidity | code: mst | fields: depth, value, lat, type Sensor: rainfall | fields: level, lon, depth, ts Task: Retrieve level from turbidity whose depth is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060192
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: lon, qc, level, unit Sensor: dew_point | fields: lat, value, lon, qc Task: Fetch lon from cloud_cover that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060193
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: qc, depth, lon, ts Sensor: pressure | fields: qc, type, lat, unit Task: Retrieve depth from snow_depth that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060194
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: value, depth, lat, unit Sensor: frost | fields: lon, depth, qc, ts Task: Get depth from cloud_cover where value exceeds the maximum value from frost for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060195
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: lat, value, unit, lon Sensor: cloud_cover | fields: level, ts, value, unit Task: Fetch lon from snow_depth where type exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060196
train
v1
Sensor network script: Node: lightning | code: prt | fields: lon, value, unit, lat Sensor: turbidity | fields: level, value, unit, lat Task: Get depth from lightning where depth appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060197
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: level, qc, unit, type Sensor: humidity | fields: lat, qc, unit, value Task: Get level from cloud_cover where depth exceeds the average depth from humidity for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060198
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: reading, lat, depth, lon Sensor: soil_moisture | fields: type, unit, reading, lat Task: Get lat from snow_depth where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060199
train