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: gst | fields: level, lon, unit, ts Sensor: drought_index | fields: depth, lon, type, level Task: Retrieve depth from dew_point that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005800
train
v2
Sensor network script: Node: visibility | code: thr | fields: lat, reading, depth, ts Sensor: air_quality | fields: lon, reading, value, ts Task: Get value from visibility where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005801
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: level, qc, lat, value Sensor: turbidity | fields: reading, lat, value, depth Task: Retrieve depth from wind_speed that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005802
train
v2
Sensor network script: Node: drought_index | code: ref | fields: unit, type, reading, value Sensor: snow_depth | fields: level, lat, type, lon Task: Get lat from drought_index where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005803
train
v1
Sensor network script: Node: drought_index | code: clr | fields: value, reading, lat, ts Sensor: uv_index | fields: value, type, lon, qc Task: Get lon from drought_index where unit appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005804
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: level, ts, reading, unit Sensor: snow_depth | fields: qc, unit, level, depth Task: Retrieve depth from cloud_cover whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005805
train
v3
Sensor network script: Node: turbidity | code: ref | fields: type, unit, lat, value Sensor: snow_depth | fields: ts, depth, unit, lat Task: Get depth from turbidity where value exceeds the average depth from snow_depth for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005806
train
v3
Sensor network script: Node: turbidity | code: thr | fields: depth, qc, type, lat Sensor: sunlight | fields: lon, depth, unit, reading Task: Retrieve level from turbidity with reading above the COUNT(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005807
train
v2
Sensor network script: Node: lightning | code: mst | fields: value, unit, type, ts Sensor: wind_speed | fields: ts, reading, qc, unit Task: Get level from lightning where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005808
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: lat, type, depth, ts Sensor: snow_depth | fields: type, lon, qc, level Task: Fetch value from cloud_cover that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005809
train
v3
Sensor network script: Node: pressure | code: prt | fields: lat, qc, type, reading Sensor: drought_index | fields: ts, type, value, lat Task: Fetch lat from pressure where value is greater than the maximum of depth in drought_index for matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005810
train
v3
Sensor network script: Node: uv_index | code: stn | fields: type, reading, depth, value Sensor: temperature | fields: reading, depth, lat, type Task: Get lat from uv_index where depth exceeds the count of value from temperature for the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005811
train
v2
Sensor network script: Node: lightning | code: clr | fields: ts, qc, lat, value Sensor: air_quality | fields: lat, type, reading, value Task: Fetch value from lightning that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005812
train
v2
Sensor network script: Node: temperature | code: stn | fields: depth, ts, type, level Sensor: sunlight | fields: lat, unit, ts, value Task: Retrieve value from temperature that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005813
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lon, type, depth, level Sensor: dew_point | fields: reading, level, lon, unit Task: Get lon from evaporation where type appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005814
train
v1
Sensor network script: Node: air_quality | code: prt | fields: type, qc, level, lat Sensor: temperature | fields: lon, depth, lat, level Task: Get reading from air_quality where unit appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005815
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lat, type, qc, value Sensor: rainfall | fields: unit, qc, type, lat Task: Retrieve level from uv_index whose qc is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005816
train
v2
Sensor network script: Node: sunlight | code: ref | fields: ts, value, unit, qc Sensor: cloud_cover | fields: qc, unit, depth, lat Task: Get lat from sunlight where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005817
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lat, lon, type, level Sensor: wind_speed | fields: ts, unit, reading, lat Task: Retrieve value from snow_depth that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005818
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: lon, depth, lat, type Sensor: drought_index | fields: depth, ts, unit, lat Task: Fetch level from snow_depth that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005819
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, reading, value, type Sensor: evaporation | fields: lat, lon, depth, level Task: Fetch lat from air_quality where reading is greater than the total of value in evaporation for matching qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005820
train
v3
Sensor network script: Node: frost | code: ref | fields: reading, lat, lon, ts Sensor: wind_speed | fields: unit, lat, ts, value Task: Retrieve reading from frost with depth above the AVG(value) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005821
train
v1
Sensor network script: Node: air_quality | code: stn | fields: type, value, ts, qc Sensor: cloud_cover | fields: unit, ts, depth, reading Task: Fetch lon from air_quality where unit exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005822
train
v1
Sensor network script: Node: visibility | code: prt | fields: type, level, qc, ts Sensor: turbidity | fields: level, depth, qc, lon Task: Retrieve reading from visibility whose type is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005823
train
v1
Sensor network script: Node: temperature | code: gst | fields: type, reading, unit, value Sensor: cloud_cover | fields: unit, lat, depth, lon Task: Get level from temperature where ts appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005824
train
v3
Sensor network script: Node: humidity | code: clr | fields: depth, value, type, qc Sensor: cloud_cover | fields: value, level, depth, ts Task: Retrieve depth from humidity with reading above the SUM(value) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005825
train
v3
Sensor network script: Node: lightning | code: mst | fields: unit, ts, lon, depth Sensor: evaporation | fields: qc, ts, lon, reading Task: Retrieve depth from lightning with value above the MAX(depth) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005826
train
v3
Sensor network script: Node: pressure | code: prt | fields: qc, value, unit, level Sensor: evaporation | fields: reading, ts, depth, unit Task: Fetch lat from pressure where depth is greater than the maximum of reading in evaporation for matching ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005827
train
v1
Sensor network script: Node: dew_point | code: thr | fields: unit, lat, reading, depth Sensor: turbidity | fields: depth, lon, reading, ts Task: Get value from dew_point where type appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005828
train
v3
Sensor network script: Node: air_quality | code: ref | fields: level, lon, ts, depth Sensor: lightning | fields: value, qc, level, type Task: Get level from air_quality where depth exceeds the count of value from lightning for the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "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_005829
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, reading, value, lat Sensor: pressure | fields: unit, lat, qc, ts Task: Fetch reading from visibility where depth exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005830
train
v2
Sensor network script: Node: sunlight | code: gst | fields: type, qc, lat, value Sensor: temperature | fields: ts, qc, lat, level Task: Retrieve value from sunlight that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005831
train
v1
Sensor network script: Node: sunlight | code: stn | fields: depth, unit, lon, lat Sensor: temperature | fields: type, ts, unit, lon Task: Fetch level from sunlight where ts exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005832
train
v2
Sensor network script: Node: temperature | code: hub | fields: value, ts, reading, qc Sensor: wind_speed | fields: value, type, unit, depth Task: Get value from temperature where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005833
train
v3
Sensor network script: Node: drought_index | code: mst | fields: reading, lon, value, depth Sensor: cloud_cover | fields: type, lon, value, ts Task: Fetch lon from drought_index where reading is greater than the maximum of depth in cloud_cover for matching depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005834
train
v3
Sensor network script: Node: evaporation | code: gst | fields: reading, level, type, lat Sensor: rainfall | fields: ts, level, reading, type Task: Fetch depth from evaporation where value is greater than the minimum of value in rainfall for matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005835
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: level, lon, value, reading Sensor: rainfall | fields: ts, type, reading, lon Task: Fetch level from cloud_cover where reading is greater than the count of of depth in rainfall for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005836
train
v1
Sensor network script: Node: air_quality | code: clr | fields: value, ts, reading, depth Sensor: temperature | fields: depth, lon, level, type Task: Retrieve depth from air_quality whose depth is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005837
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: unit, depth, ts, level Sensor: snow_depth | fields: ts, lon, value, reading Task: Retrieve lat from cloud_cover whose ts is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005838
train
v3
Sensor network script: Node: pressure | code: hub | fields: unit, type, qc, reading Sensor: humidity | fields: lat, unit, ts, type Task: Fetch level from pressure where value is greater than the total of reading in humidity for matching type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005839
train
v3
Sensor network script: Node: sunlight | code: clr | fields: depth, lat, reading, lon Sensor: rainfall | fields: value, type, qc, depth Task: Retrieve lat from sunlight with reading above the MIN(depth) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lat", "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_005840
train
v1
Sensor network script: Node: temperature | code: hub | fields: qc, lat, depth, reading Sensor: drought_index | fields: type, lat, value, ts Task: Fetch value from temperature where unit exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005841
train
v3
Sensor network script: Node: sunlight | code: gst | fields: reading, type, qc, depth Sensor: snow_depth | fields: ts, level, depth, lat Task: Fetch reading from sunlight where reading is greater than the maximum of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005842
train
v2
Sensor network script: Node: air_quality | code: prt | fields: type, lon, level, lat Sensor: uv_index | fields: depth, unit, lat, value Task: Fetch lon from air_quality that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005843
train
v3
Sensor network script: Node: frost | code: hub | fields: value, depth, qc, reading Sensor: temperature | fields: value, type, lon, qc Task: Get reading from frost where depth exceeds the total value from temperature for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005844
train
v2
Sensor network script: Node: turbidity | code: gst | fields: level, lon, qc, reading Sensor: dew_point | fields: ts, lat, level, qc Task: Fetch lon from turbidity that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005845
train
v3
Sensor network script: Node: lightning | code: prt | fields: level, ts, type, lat Sensor: dew_point | fields: lon, depth, level, value Task: Get reading from lightning where value exceeds the average depth from dew_point for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005846
train
v3
Sensor network script: Node: humidity | code: stn | fields: lon, unit, lat, ts Sensor: pressure | fields: level, lon, unit, ts Task: Get reading from humidity where depth exceeds the total value from pressure for the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005847
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: qc, level, value, lat Sensor: drought_index | fields: type, level, qc, depth Task: Fetch level from soil_moisture where ts exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005848
train
v2
Sensor network script: Node: sunlight | code: clr | fields: level, lat, ts, unit Sensor: temperature | fields: level, reading, ts, unit Task: Get lon from sunlight where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005849
train
v1
Sensor network script: Node: visibility | code: ref | fields: reading, lon, level, type Sensor: soil_moisture | fields: level, unit, type, qc Task: Fetch level from visibility where unit exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005850
train
v3
Sensor network script: Node: frost | code: gst | fields: reading, ts, level, value Sensor: rainfall | fields: type, lat, lon, depth Task: Fetch depth from frost where depth is greater than the count of of depth in rainfall for matching ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "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_005851
train
v3
Sensor network script: Node: air_quality | code: stn | fields: level, ts, lon, type Sensor: turbidity | fields: type, level, depth, ts Task: Get lat from air_quality where depth exceeds the average depth from turbidity for the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "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_005852
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: ts, lon, level, unit Sensor: lightning | fields: ts, reading, depth, lat Task: Fetch lat from cloud_cover where value is greater than the average of value in lightning for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005853
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: lon, reading, level, value Sensor: snow_depth | fields: lon, value, ts, lat Task: Fetch lon from cloud_cover that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005854
train
v2
Sensor network script: Node: evaporation | code: mst | fields: value, level, lon, reading Sensor: pressure | fields: value, type, lat, reading Task: Fetch reading from evaporation that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005855
train
v1
Sensor network script: Node: lightning | code: prt | fields: value, lon, lat, ts Sensor: drought_index | fields: unit, level, type, lon Task: Fetch value from lightning where ts exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005856
train
v2
Sensor network script: Node: humidity | code: ref | fields: value, qc, level, type Sensor: turbidity | fields: lat, lon, level, ts Task: Retrieve level from humidity that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005857
train
v1
Sensor network script: Node: uv_index | code: prt | fields: level, depth, type, lon Sensor: cloud_cover | fields: qc, lat, depth, ts Task: Retrieve reading from uv_index whose depth is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005858
train
v2
Sensor network script: Node: humidity | code: thr | fields: ts, type, qc, lon Sensor: visibility | fields: level, lat, depth, unit Task: Get reading from humidity where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005859
train
v2
Sensor network script: Node: rainfall | code: stn | fields: type, reading, lat, value Sensor: soil_moisture | fields: ts, depth, lon, unit Task: Get lat from rainfall where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005860
train
v3
Sensor network script: Node: pressure | code: prt | fields: ts, depth, qc, level Sensor: wind_speed | fields: qc, lon, ts, depth Task: Fetch reading from pressure where depth is greater than the total of value in wind_speed for matching depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005861
train
v1
Sensor network script: Node: humidity | code: gst | fields: reading, unit, lat, level Sensor: temperature | fields: ts, value, reading, lon Task: Fetch depth from humidity where type exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005862
train
v1
Sensor network script: Node: temperature | code: clr | fields: reading, ts, value, type Sensor: dew_point | fields: lon, ts, lat, value Task: Retrieve lon from temperature whose qc is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005863
train
v1
Sensor network script: Node: lightning | code: mst | fields: type, reading, level, ts Sensor: wind_speed | fields: reading, type, lat, unit Task: Retrieve lon from lightning whose qc is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005864
train
v3
Sensor network script: Node: air_quality | code: prt | fields: depth, type, lat, level Sensor: frost | fields: value, qc, level, depth Task: Fetch lon from air_quality where reading is greater than the total of depth in frost for matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005865
train
v3
Sensor network script: Node: sunlight | code: prt | fields: qc, level, type, lat Sensor: humidity | fields: reading, qc, lon, type Task: Retrieve lon from sunlight with value above the SUM(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005866
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lon, qc, value, reading Sensor: temperature | fields: type, lon, qc, ts Task: Get depth from cloud_cover where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005867
train
v3
Sensor network script: Node: pressure | code: prt | fields: qc, value, type, depth Sensor: cloud_cover | fields: ts, lon, unit, qc Task: Fetch lat from pressure where value is greater than the maximum of reading in cloud_cover for matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005868
train
v2
Sensor network script: Node: air_quality | code: hub | fields: depth, type, unit, lat Sensor: lightning | fields: ts, lon, depth, lat Task: Retrieve level from air_quality that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005869
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: reading, value, ts, unit Sensor: evaporation | fields: value, unit, reading, ts Task: Get level from cloud_cover where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005870
train
v1
Sensor network script: Node: frost | code: ref | fields: ts, qc, type, reading Sensor: uv_index | fields: reading, value, lon, unit Task: Get value from frost where depth appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005871
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: reading, qc, unit, lat Sensor: frost | fields: depth, value, type, qc Task: Get lon from soil_moisture where reading exceeds the count of reading from frost for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005872
train
v2
Sensor network script: Node: pressure | code: mst | fields: ts, value, lon, qc Sensor: uv_index | fields: qc, depth, reading, lon Task: Get lat from pressure where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005873
train
v1
Sensor network script: Node: temperature | code: stn | fields: level, qc, lat, depth Sensor: drought_index | fields: unit, type, reading, depth Task: Get value from temperature where ts appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005874
train
v3
Sensor network script: Node: sunlight | code: prt | fields: value, depth, unit, level Sensor: rainfall | fields: ts, lon, lat, value Task: Fetch depth from sunlight where value is greater than the total of reading in rainfall for matching qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005875
train
v1
Sensor network script: Node: drought_index | code: clr | fields: unit, depth, level, lat Sensor: air_quality | fields: qc, level, unit, value Task: Retrieve value from drought_index whose depth is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005876
train
v3
Sensor network script: Node: temperature | code: mst | fields: qc, level, unit, depth Sensor: rainfall | fields: level, type, qc, ts Task: Retrieve reading from temperature with depth above the MAX(depth) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005877
train
v1
Sensor network script: Node: frost | code: prt | fields: depth, reading, lon, level Sensor: visibility | fields: lon, level, value, unit Task: Retrieve lon from frost whose ts is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005878
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: ts, type, reading, lon Sensor: visibility | fields: ts, qc, level, unit Task: Get lat from wind_speed where ts appears in visibility readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005879
train
v1
Sensor network script: Node: pressure | code: hub | fields: value, type, lat, unit Sensor: air_quality | fields: depth, ts, reading, level Task: Retrieve value from pressure whose type is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005880
train
v1
Sensor network script: Node: visibility | code: thr | fields: level, type, depth, reading Sensor: rainfall | fields: unit, level, type, qc Task: Retrieve depth from visibility whose unit is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005881
train
v1
Sensor network script: Node: drought_index | code: stn | fields: unit, type, reading, depth Sensor: evaporation | fields: unit, depth, level, lat Task: Fetch reading from drought_index where qc exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005882
train
v1
Sensor network script: Node: temperature | code: hub | fields: qc, reading, lat, depth Sensor: wind_speed | fields: ts, qc, lat, type Task: Get depth from temperature where ts appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005883
train
v3
Sensor network script: Node: pressure | code: ref | fields: value, ts, type, depth Sensor: air_quality | fields: lat, qc, level, unit Task: Retrieve lat from pressure with value above the COUNT(depth) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005884
train
v3
Sensor network script: Node: frost | code: mst | fields: unit, lat, depth, reading Sensor: visibility | fields: qc, unit, level, lat Task: Get lon from frost where reading exceeds the count of depth from visibility for the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005885
train
v2
Sensor network script: Node: uv_index | code: thr | fields: unit, reading, depth, level Sensor: pressure | fields: depth, reading, ts, level Task: Fetch level from uv_index that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005886
train
v1
Sensor network script: Node: sunlight | code: thr | fields: ts, depth, reading, lon Sensor: wind_speed | fields: value, ts, reading, unit Task: Fetch depth from sunlight where type exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="type", 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": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005887
train
v1
Sensor network script: Node: sunlight | code: prt | fields: unit, lon, qc, reading Sensor: soil_moisture | fields: depth, lat, qc, reading Task: Get lat from sunlight where depth appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005888
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: level, qc, unit, lon Sensor: uv_index | fields: ts, lon, value, lat Task: Fetch value from soil_moisture that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005889
train
v2
Sensor network script: Node: evaporation | code: clr | fields: qc, lon, ts, type Sensor: cloud_cover | fields: reading, value, type, qc Task: Retrieve lon from evaporation that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005890
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: ts, qc, type, lat Sensor: sunlight | fields: ts, depth, level, type Task: Retrieve level from soil_moisture that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005891
train
v2
Sensor network script: Node: drought_index | code: prt | fields: depth, ts, type, value Sensor: snow_depth | fields: qc, lat, lon, type Task: Get lon from drought_index where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005892
train
v3
Sensor network script: Node: pressure | code: mst | fields: lon, level, reading, value Sensor: rainfall | fields: depth, type, lon, lat Task: Retrieve lon from pressure with reading above the MIN(reading) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005893
train
v3
Sensor network script: Node: temperature | code: hub | fields: lat, reading, unit, lon Sensor: visibility | fields: type, qc, reading, unit Task: Fetch value from temperature where value is greater than the count of of depth in visibility for matching ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005894
train
v2
Sensor network script: Node: visibility | code: stn | fields: depth, lat, value, reading Sensor: turbidity | fields: lat, unit, level, type Task: Fetch depth from visibility that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005895
train
v2
Sensor network script: Node: evaporation | code: prt | fields: reading, value, unit, lon Sensor: dew_point | fields: ts, value, level, depth Task: Retrieve level from evaporation that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005896
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: reading, lon, qc, unit Sensor: dew_point | fields: unit, lat, level, reading Task: Retrieve lat from snow_depth that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005897
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: reading, lon, ts, lat Sensor: cloud_cover | fields: value, reading, level, ts Task: Get depth from soil_moisture where value exceeds the total reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005898
train
v3
Sensor network script: Node: pressure | code: hub | fields: lat, ts, qc, depth Sensor: frost | fields: reading, level, type, value Task: Retrieve value from pressure with depth above the MIN(depth) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005899
train