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: dew_point | code: prt | fields: lat, qc, reading, depth Sensor: lightning | fields: type, qc, depth, unit Task: Fetch reading from dew_point that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023000
train
v1
Sensor network script: Node: air_quality | code: gst | fields: depth, reading, lon, qc Sensor: dew_point | fields: ts, reading, unit, depth Task: Fetch lat from air_quality where ts exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023001
train
v3
Sensor network script: Node: air_quality | code: gst | fields: depth, reading, level, unit Sensor: lightning | fields: unit, value, level, ts Task: Retrieve depth from air_quality with depth above the COUNT(depth) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023002
train
v2
Sensor network script: Node: pressure | code: thr | fields: ts, qc, unit, depth Sensor: visibility | fields: ts, unit, reading, value Task: Retrieve level from pressure that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023003
train
v3
Sensor network script: Node: rainfall | code: clr | fields: unit, ts, depth, level Sensor: sunlight | fields: lon, depth, type, unit Task: Get lon from rainfall where value exceeds the maximum depth from sunlight for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023004
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: lon, ts, type, lat Sensor: visibility | fields: type, qc, level, reading Task: Fetch level from snow_depth where unit exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023005
train
v2
Sensor network script: Node: temperature | code: clr | fields: unit, level, qc, ts Sensor: evaporation | fields: type, ts, reading, qc Task: Retrieve lat from temperature that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023006
train
v2
Sensor network script: Node: dew_point | code: ref | fields: value, type, unit, reading Sensor: cloud_cover | fields: type, level, ts, depth Task: Retrieve depth from dew_point that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023007
train
v1
Sensor network script: Node: pressure | code: mst | fields: unit, level, reading, type Sensor: visibility | fields: depth, ts, value, lat Task: Retrieve level from pressure whose depth is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023008
train
v2
Sensor network script: Node: visibility | code: ref | fields: reading, lon, ts, qc Sensor: lightning | fields: unit, qc, ts, level Task: Get level from visibility where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023009
train
v3
Sensor network script: Node: lightning | code: gst | fields: reading, ts, level, lon Sensor: soil_moisture | fields: lon, unit, value, qc Task: Fetch level from lightning where depth is greater than the average of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023010
train
v3
Sensor network script: Node: frost | code: clr | fields: lat, qc, lon, level Sensor: air_quality | fields: lat, value, reading, depth Task: Get lat from frost where value exceeds the maximum value from air_quality for the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023011
train
v1
Sensor network script: Node: humidity | code: mst | fields: reading, lat, ts, qc Sensor: sunlight | fields: ts, qc, depth, unit Task: Retrieve value from humidity whose unit is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023012
train
v2
Sensor network script: Node: temperature | code: mst | fields: type, reading, depth, value Sensor: lightning | fields: lon, reading, qc, depth Task: Retrieve lat from temperature that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023013
train
v1
Sensor network script: Node: evaporation | code: gst | fields: qc, lat, lon, unit Sensor: temperature | fields: unit, ts, depth, level Task: Retrieve value from evaporation whose type is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023014
train
v3
Sensor network script: Node: pressure | code: hub | fields: lon, ts, depth, unit Sensor: air_quality | fields: lat, type, reading, qc Task: Retrieve value from pressure with value above the COUNT(depth) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023015
train
v3
Sensor network script: Node: pressure | code: thr | fields: qc, unit, type, lat Sensor: evaporation | fields: lat, level, reading, lon Task: Get reading from pressure where depth exceeds the minimum value from evaporation for the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023016
train
v1
Sensor network script: Node: pressure | code: gst | fields: ts, value, level, reading Sensor: humidity | fields: value, lat, depth, level Task: Get reading from pressure where ts appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023017
train
v3
Sensor network script: Node: pressure | code: prt | fields: type, value, lat, level Sensor: turbidity | fields: unit, reading, qc, lon Task: Fetch level from pressure where value is greater than the total of value in turbidity for matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023018
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: value, depth, level, unit Sensor: turbidity | fields: reading, lat, ts, level Task: Fetch value from wind_speed where unit exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023019
train
v2
Sensor network script: Node: visibility | code: mst | fields: type, unit, reading, level Sensor: turbidity | fields: unit, ts, reading, lon Task: Fetch reading from visibility that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023020
train
v3
Sensor network script: Node: air_quality | code: stn | fields: depth, ts, lat, level Sensor: frost | fields: depth, ts, reading, lat Task: Fetch depth from air_quality where reading is greater than the count of of depth in frost for matching ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023021
train
v2
Sensor network script: Node: humidity | code: mst | fields: type, reading, ts, unit Sensor: pressure | fields: lon, type, reading, depth Task: Fetch lat from humidity that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023022
train
v3
Sensor network script: Node: sunlight | code: hub | fields: unit, depth, lon, value Sensor: evaporation | fields: lat, value, depth, level Task: Get depth from sunlight where value exceeds the average value from evaporation for the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023023
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, depth, unit, qc Sensor: air_quality | fields: lat, lon, qc, ts Task: Get lat from drought_index where depth appears in air_quality readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023024
train
v1
Sensor network script: Node: temperature | code: gst | fields: unit, value, reading, type Sensor: rainfall | fields: type, qc, reading, lon Task: Retrieve value from temperature whose ts is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023025
train
v2
Sensor network script: Node: frost | code: gst | fields: lon, lat, ts, reading Sensor: snow_depth | fields: reading, lat, level, qc Task: Get lat from frost where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023026
train
v3
Sensor network script: Node: air_quality | code: prt | fields: value, level, ts, reading Sensor: frost | fields: ts, reading, lat, value Task: Get lat from air_quality where value exceeds the minimum reading from frost for the same unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023027
train
v1
Sensor network script: Node: sunlight | code: gst | fields: depth, lat, type, ts Sensor: visibility | fields: unit, qc, level, ts Task: Get depth from sunlight where ts appears in visibility readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023028
train
v2
Sensor network script: Node: visibility | code: prt | fields: type, ts, depth, value Sensor: frost | fields: level, type, reading, value Task: Get depth from visibility where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023029
train
v1
Sensor network script: Node: evaporation | code: thr | fields: lat, reading, ts, depth Sensor: wind_speed | fields: depth, level, type, lat Task: Get value from evaporation where type appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023030
train
v2
Sensor network script: Node: visibility | code: thr | fields: depth, level, type, lon Sensor: frost | fields: unit, qc, lat, value Task: Fetch lon from visibility that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023031
train
v1
Sensor network script: Node: humidity | code: stn | fields: ts, reading, lat, type Sensor: wind_speed | fields: lon, type, value, lat Task: Fetch reading from humidity where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023032
train
v1
Sensor network script: Node: rainfall | code: mst | fields: depth, level, value, lat Sensor: sunlight | fields: level, depth, qc, lat Task: Fetch depth from rainfall where qc exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023033
train
v1
Sensor network script: Node: turbidity | code: stn | fields: lat, qc, type, value Sensor: soil_moisture | fields: reading, qc, depth, ts Task: Get depth from turbidity where unit appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023034
train
v1
Sensor network script: Node: rainfall | code: prt | fields: lat, qc, level, depth Sensor: temperature | fields: unit, qc, ts, lat Task: Get level from rainfall where qc appears in temperature readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023035
train
v1
Sensor network script: Node: lightning | code: prt | fields: lon, level, depth, ts Sensor: frost | fields: type, depth, lon, value Task: Retrieve lat from lightning whose qc is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023036
train
v2
Sensor network script: Node: pressure | code: gst | fields: reading, value, depth, unit Sensor: temperature | fields: reading, lon, value, type Task: Fetch value from pressure that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023037
train
v3
Sensor network script: Node: rainfall | code: thr | fields: depth, value, unit, lon Sensor: evaporation | fields: lat, ts, lon, type Task: Fetch lon from rainfall where value is greater than the total of depth in evaporation for matching type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023038
train
v1
Sensor network script: Node: turbidity | code: stn | fields: qc, ts, lat, value Sensor: air_quality | fields: reading, ts, unit, lat Task: Get level from turbidity where ts appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023039
train
v3
Sensor network script: Node: turbidity | code: clr | fields: qc, ts, reading, level Sensor: frost | fields: qc, reading, unit, depth Task: Retrieve reading from turbidity with depth above the COUNT(depth) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023040
train
v2
Sensor network script: Node: turbidity | code: mst | fields: depth, type, reading, value Sensor: soil_moisture | fields: type, value, lat, lon Task: Fetch lat from turbidity that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023041
train
v1
Sensor network script: Node: dew_point | code: clr | fields: reading, type, unit, depth Sensor: pressure | fields: ts, depth, level, type Task: Get value from dew_point where type appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023042
train
v3
Sensor network script: Node: sunlight | code: prt | fields: type, depth, reading, level Sensor: lightning | fields: lat, lon, value, depth Task: Get value from sunlight where reading exceeds the maximum value from lightning for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023043
train
v1
Sensor network script: Node: drought_index | code: hub | fields: value, depth, reading, qc Sensor: wind_speed | fields: value, reading, unit, level Task: Retrieve level from drought_index whose ts is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023044
train
v2
Sensor network script: Node: rainfall | code: prt | fields: lon, value, type, level Sensor: soil_moisture | fields: unit, lon, level, type Task: Get lon from rainfall where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023045
train
v2
Sensor network script: Node: turbidity | code: thr | fields: ts, lat, qc, level Sensor: wind_speed | fields: lat, qc, lon, reading Task: Get reading from turbidity where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023046
train
v3
Sensor network script: Node: drought_index | code: gst | fields: reading, value, unit, level Sensor: soil_moisture | fields: lat, qc, reading, level Task: Fetch level from drought_index where depth is greater than the count of of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023047
train
v3
Sensor network script: Node: uv_index | code: thr | fields: type, value, ts, depth Sensor: wind_speed | fields: depth, ts, level, lat Task: Fetch reading from uv_index where value is greater than the count of of value in wind_speed for matching qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023048
train
v1
Sensor network script: Node: uv_index | code: gst | fields: ts, qc, lat, depth Sensor: lightning | fields: ts, reading, lat, qc Task: Retrieve lat from uv_index whose depth is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023049
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: value, ts, unit, lon Sensor: frost | fields: depth, ts, value, unit Task: Fetch value from cloud_cover where value is greater than the average of reading in frost for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023050
train
v2
Sensor network script: Node: air_quality | code: mst | fields: lon, ts, value, level Sensor: dew_point | fields: type, depth, lat, lon Task: Fetch lat from air_quality that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023051
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: lat, value, level, lon Sensor: visibility | fields: ts, level, lat, lon Task: Fetch value from wind_speed where ts exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023052
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, type, lat, lon Sensor: visibility | fields: value, reading, depth, ts Task: Fetch reading from dew_point that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023053
train
v2
Sensor network script: Node: lightning | code: thr | fields: type, lat, level, unit Sensor: cloud_cover | fields: lat, qc, depth, lon Task: Retrieve level from lightning that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023054
train
v1
Sensor network script: Node: frost | code: stn | fields: reading, qc, type, unit Sensor: temperature | fields: ts, value, type, qc Task: Fetch lon from frost where depth exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023055
train
v3
Sensor network script: Node: pressure | code: stn | fields: depth, reading, lat, value Sensor: air_quality | fields: level, reading, lat, value Task: Get depth from pressure where depth exceeds the average reading from air_quality for the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023056
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: value, qc, ts, lon Sensor: frost | fields: depth, type, unit, lon Task: Retrieve value from soil_moisture with value above the COUNT(value) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023057
train
v2
Sensor network script: Node: dew_point | code: stn | fields: depth, lat, level, type Sensor: frost | fields: lon, level, value, unit Task: Retrieve reading from dew_point that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023058
train
v3
Sensor network script: Node: drought_index | code: prt | fields: value, type, reading, qc Sensor: uv_index | fields: ts, type, lat, lon Task: Fetch level from drought_index where depth is greater than the average of value in uv_index for matching qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023059
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: value, qc, reading, ts Sensor: pressure | fields: lat, value, ts, reading Task: Retrieve lon from wind_speed whose unit is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023060
train
v3
Sensor network script: Node: air_quality | code: ref | fields: type, unit, level, ts Sensor: sunlight | fields: value, level, qc, unit Task: Fetch lat from air_quality where depth is greater than the average of value in sunlight for matching unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023061
train
v2
Sensor network script: Node: uv_index | code: hub | fields: unit, lat, value, lon Sensor: dew_point | fields: type, lon, level, ts Task: Retrieve level from uv_index that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023062
train
v2
Sensor network script: Node: uv_index | code: ref | fields: level, depth, ts, unit Sensor: lightning | fields: depth, lon, type, ts Task: Retrieve level from uv_index that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023063
train
v2
Sensor network script: Node: rainfall | code: ref | fields: depth, level, lat, lon Sensor: sunlight | fields: lat, type, qc, reading Task: Get lon from rainfall where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023064
train
v3
Sensor network script: Node: lightning | code: gst | fields: qc, reading, level, unit Sensor: soil_moisture | fields: reading, qc, value, level Task: Retrieve depth from lightning with value above the AVG(reading) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023065
train
v3
Sensor network script: Node: sunlight | code: ref | fields: ts, lon, level, reading Sensor: cloud_cover | fields: depth, type, ts, value Task: Fetch lon from sunlight where reading is greater than the total of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023066
train
v2
Sensor network script: Node: lightning | code: mst | fields: lat, unit, depth, level Sensor: dew_point | fields: level, depth, value, unit Task: Get value from lightning where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023067
train
v2
Sensor network script: Node: rainfall | code: stn | fields: value, lon, ts, type Sensor: dew_point | fields: level, lat, reading, depth Task: Fetch value from rainfall that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023068
train
v3
Sensor network script: Node: pressure | code: hub | fields: level, type, lat, qc Sensor: temperature | fields: type, lon, ts, lat Task: Get lon from pressure where depth exceeds the minimum value from temperature for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023069
train
v1
Sensor network script: Node: drought_index | code: clr | fields: level, lat, depth, ts Sensor: wind_speed | fields: type, depth, level, unit Task: Retrieve reading from drought_index whose depth is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023070
train
v1
Sensor network script: Node: lightning | code: hub | fields: unit, qc, ts, lat Sensor: cloud_cover | fields: level, lat, reading, type Task: Retrieve lon from lightning whose qc is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023071
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lon, value, type, reading Sensor: wind_speed | fields: value, unit, ts, level Task: Get lat from dew_point where qc appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023072
train
v1
Sensor network script: Node: humidity | code: mst | fields: unit, type, level, ts Sensor: lightning | fields: lon, ts, depth, value Task: Retrieve depth from humidity whose depth is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023073
train
v2
Sensor network script: Node: turbidity | code: hub | fields: qc, depth, ts, lon Sensor: temperature | fields: level, value, type, qc Task: Retrieve depth from turbidity that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023074
train
v1
Sensor network script: Node: evaporation | code: ref | fields: depth, lat, level, unit Sensor: cloud_cover | fields: unit, ts, depth, lat Task: Fetch lon from evaporation where type exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023075
train
v1
Sensor network script: Node: pressure | code: prt | fields: qc, unit, depth, level Sensor: temperature | fields: type, level, value, lat Task: Fetch reading from pressure where ts exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023076
train
v3
Sensor network script: Node: air_quality | code: gst | fields: lat, ts, level, type Sensor: cloud_cover | fields: depth, reading, unit, value Task: Get value from air_quality where depth exceeds the maximum value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023077
train
v1
Sensor network script: Node: turbidity | code: clr | fields: lat, reading, type, qc Sensor: pressure | fields: lon, ts, level, type Task: Retrieve lon from turbidity whose ts is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023078
train
v2
Sensor network script: Node: visibility | code: hub | fields: ts, reading, lat, value Sensor: soil_moisture | fields: qc, depth, type, value Task: Retrieve reading from visibility that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023079
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: qc, unit, reading, type Sensor: evaporation | fields: reading, unit, type, level Task: Get lon from wind_speed where depth exceeds the maximum value from evaporation for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023080
train
v3
Sensor network script: Node: dew_point | code: ref | fields: ts, value, type, qc Sensor: turbidity | fields: unit, lat, reading, value Task: Get level from dew_point where depth exceeds the count of value from turbidity for the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023081
train
v1
Sensor network script: Node: visibility | code: gst | fields: lon, value, level, reading Sensor: temperature | fields: value, lon, unit, depth Task: Get value from visibility where depth appears in temperature readings with matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023082
train
v3
Sensor network script: Node: sunlight | code: gst | fields: unit, value, lon, level Sensor: uv_index | fields: value, lon, ts, qc Task: Get lat from sunlight where reading exceeds the maximum depth from uv_index for the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023083
train
v3
Sensor network script: Node: pressure | code: clr | fields: lat, value, qc, type Sensor: evaporation | fields: lat, unit, qc, depth Task: Fetch reading from pressure where reading is greater than the minimum of value in evaporation for matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023084
train
v1
Sensor network script: Node: uv_index | code: mst | fields: level, lon, reading, ts Sensor: temperature | fields: depth, qc, type, value Task: Fetch level from uv_index where depth exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023085
train
v3
Sensor network script: Node: uv_index | code: stn | fields: depth, qc, lat, ts Sensor: drought_index | fields: unit, qc, depth, level Task: Retrieve depth from uv_index with reading above the SUM(value) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023086
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lon, reading, ts, qc Sensor: frost | fields: depth, lat, unit, value Task: Get reading from snow_depth where depth exceeds the maximum reading from frost for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023087
train
v1
Sensor network script: Node: air_quality | code: prt | fields: value, ts, type, unit Sensor: snow_depth | fields: reading, type, unit, lat Task: Get lat from air_quality where depth appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023088
train
v1
Sensor network script: Node: drought_index | code: prt | fields: value, type, reading, qc Sensor: dew_point | fields: qc, ts, unit, type Task: Retrieve value from drought_index whose ts is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023089
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: lon, qc, value, lat Sensor: evaporation | fields: qc, value, unit, lat Task: Retrieve depth from soil_moisture with value above the AVG(depth) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023090
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: value, depth, qc, ts Sensor: dew_point | fields: lat, depth, lon, value Task: Fetch lon from soil_moisture that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023091
train
v2
Sensor network script: Node: humidity | code: gst | fields: value, reading, depth, lon Sensor: snow_depth | fields: reading, qc, type, level Task: Retrieve lat from humidity that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023092
train
v2
Sensor network script: Node: rainfall | code: clr | fields: depth, unit, type, reading Sensor: dew_point | fields: ts, qc, lat, level Task: Retrieve reading from rainfall that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023093
train
v1
Sensor network script: Node: drought_index | code: hub | fields: level, value, unit, lon Sensor: snow_depth | fields: value, type, reading, depth Task: Get lon from drought_index where type appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023094
train
v3
Sensor network script: Node: evaporation | code: clr | fields: depth, qc, unit, level Sensor: cloud_cover | fields: unit, ts, qc, value Task: Retrieve reading from evaporation with depth above the MIN(depth) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023095
train
v3
Sensor network script: Node: drought_index | code: stn | fields: lat, reading, value, type Sensor: cloud_cover | fields: lon, qc, depth, ts Task: Retrieve value from drought_index with depth above the MAX(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023096
train
v2
Sensor network script: Node: humidity | code: stn | fields: unit, qc, type, value Sensor: sunlight | fields: unit, value, depth, level Task: Fetch lat from humidity that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023097
train
v3
Sensor network script: Node: pressure | code: mst | fields: lon, reading, lat, type Sensor: wind_speed | fields: depth, type, level, lon Task: Retrieve value from pressure with reading above the MIN(value) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_023098
train
v1
Sensor network script: Node: sunlight | code: stn | fields: level, value, reading, lon Sensor: snow_depth | fields: type, ts, qc, reading Task: Get lon from sunlight where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_023099
train