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: frost | code: ref | fields: level, lat, ts, type Sensor: soil_moisture | fields: ts, type, lon, lat Task: Get value from frost where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013700
train
v1
Sensor network script: Node: evaporation | code: thr | fields: lat, level, qc, type Sensor: turbidity | fields: value, lat, ts, depth Task: Get lat from evaporation where unit appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013701
train
v3
Sensor network script: Node: turbidity | code: stn | fields: qc, type, value, lat Sensor: evaporation | fields: reading, depth, type, level Task: Fetch value from turbidity where value is greater than the maximum of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013702
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: depth, reading, qc, lat Sensor: sunlight | fields: level, type, reading, depth Task: Fetch depth from cloud_cover where depth is greater than the minimum of value in sunlight for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013703
train
v1
Sensor network script: Node: drought_index | code: clr | fields: qc, type, level, value Sensor: humidity | fields: lat, level, unit, value Task: Retrieve lon from drought_index whose qc is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013704
train
v3
Sensor network script: Node: turbidity | code: mst | fields: lon, reading, lat, level Sensor: wind_speed | fields: depth, reading, qc, lon Task: Get reading from turbidity where reading exceeds the maximum depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013705
train
v1
Sensor network script: Node: temperature | code: clr | fields: depth, reading, lon, level Sensor: frost | fields: reading, qc, depth, unit Task: Get reading from temperature where qc appears in frost readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013706
train
v1
Sensor network script: Node: sunlight | code: stn | fields: unit, qc, level, ts Sensor: dew_point | fields: reading, depth, ts, unit Task: Fetch depth from sunlight where qc exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013707
train
v2
Sensor network script: Node: dew_point | code: ref | fields: reading, qc, lat, type Sensor: sunlight | fields: unit, qc, lon, reading Task: Retrieve value from dew_point that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013708
train
v3
Sensor network script: Node: lightning | code: thr | fields: depth, reading, lon, level Sensor: pressure | fields: lon, depth, value, reading Task: Get value from lightning where reading exceeds the maximum reading from pressure for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013709
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lon, lat, unit, ts Sensor: sunlight | fields: lat, lon, reading, depth Task: Retrieve value from soil_moisture whose type is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013710
train
v3
Sensor network script: Node: evaporation | code: clr | fields: reading, lon, value, depth Sensor: turbidity | fields: qc, type, ts, depth Task: Get lon from evaporation where value exceeds the total value from turbidity for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013711
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, reading, ts, lat Sensor: soil_moisture | fields: value, unit, ts, level Task: Retrieve reading from dew_point whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013712
train
v3
Sensor network script: Node: uv_index | code: thr | fields: value, lat, reading, type Sensor: lightning | fields: qc, lon, depth, lat Task: Retrieve reading from uv_index with reading above the SUM(value) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013713
train
v2
Sensor network script: Node: air_quality | code: stn | fields: lon, qc, type, level Sensor: visibility | fields: ts, reading, lon, level Task: Get lat from air_quality where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013714
train
v1
Sensor network script: Node: pressure | code: clr | fields: lon, reading, ts, qc Sensor: temperature | fields: ts, qc, type, unit Task: Fetch reading from pressure where qc exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013715
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, type, value, ts Sensor: soil_moisture | fields: lat, ts, level, lon Task: Fetch depth from sunlight where qc exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013716
train
v3
Sensor network script: Node: rainfall | code: thr | fields: level, value, qc, unit Sensor: evaporation | fields: value, depth, lon, type Task: Get reading from rainfall where depth exceeds the minimum value from evaporation for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013717
train
v3
Sensor network script: Node: air_quality | code: clr | fields: reading, lat, value, level Sensor: drought_index | fields: qc, ts, unit, depth Task: Retrieve reading from air_quality with value above the AVG(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013718
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: ts, reading, value, depth Sensor: humidity | fields: ts, unit, lat, lon Task: Get lat from snow_depth where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013719
train
v1
Sensor network script: Node: visibility | code: ref | fields: ts, lon, type, unit Sensor: temperature | fields: value, qc, ts, reading Task: Fetch lon from visibility where unit exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013720
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: reading, level, unit, depth Sensor: air_quality | fields: lon, ts, value, unit Task: Get lon from snow_depth where qc appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013721
train
v2
Sensor network script: Node: sunlight | code: hub | fields: level, qc, lon, type Sensor: snow_depth | fields: type, reading, value, lon Task: Retrieve lon from sunlight that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013722
train
v2
Sensor network script: Node: frost | code: hub | fields: lon, depth, type, level Sensor: snow_depth | fields: ts, value, depth, lat Task: Get depth from frost where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013723
train
v1
Sensor network script: Node: drought_index | code: hub | fields: ts, reading, depth, value Sensor: evaporation | fields: reading, lon, depth, ts Task: Get level from drought_index where unit appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013724
train
v2
Sensor network script: Node: turbidity | code: stn | fields: value, qc, level, reading Sensor: wind_speed | fields: lon, level, type, qc Task: Retrieve level from turbidity that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013725
train
v3
Sensor network script: Node: turbidity | code: mst | fields: depth, type, reading, level Sensor: lightning | fields: unit, level, reading, ts Task: Get reading from turbidity where value exceeds the count of value from lightning for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013726
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: type, value, unit, qc Sensor: air_quality | fields: qc, level, unit, type Task: Get depth from wind_speed where unit appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013727
train
v3
Sensor network script: Node: frost | code: gst | fields: depth, qc, lon, unit Sensor: sunlight | fields: qc, level, type, lat Task: Retrieve reading from frost with depth above the AVG(depth) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013728
train
v1
Sensor network script: Node: visibility | code: mst | fields: type, lat, level, value Sensor: humidity | fields: lon, reading, level, qc Task: Retrieve depth from visibility whose unit is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013729
train
v3
Sensor network script: Node: uv_index | code: thr | fields: type, ts, qc, lat Sensor: soil_moisture | fields: reading, type, unit, ts Task: Retrieve lon from uv_index with value above the AVG(value) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013730
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: reading, lon, level, qc Sensor: drought_index | fields: type, value, lat, unit Task: Get lat from snow_depth where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013731
train
v1
Sensor network script: Node: evaporation | code: stn | fields: depth, qc, lon, lat Sensor: temperature | fields: level, ts, unit, value Task: Retrieve reading from evaporation whose depth is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013732
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: type, lat, qc, reading Sensor: visibility | fields: level, lat, lon, value Task: Retrieve level from soil_moisture with depth above the MAX(reading) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013733
train
v1
Sensor network script: Node: temperature | code: prt | fields: lat, ts, lon, qc Sensor: uv_index | fields: ts, qc, lon, type Task: Fetch reading from temperature where unit exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013734
train
v2
Sensor network script: Node: temperature | code: stn | fields: lat, depth, type, reading Sensor: pressure | fields: type, qc, reading, lon Task: Get lon from temperature where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013735
train
v2
Sensor network script: Node: turbidity | code: mst | fields: reading, unit, ts, depth Sensor: dew_point | fields: level, unit, type, depth Task: Fetch lon from turbidity that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013736
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lon, type, depth, value Sensor: air_quality | fields: value, unit, level, type Task: Retrieve level from uv_index with depth above the MAX(value) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013737
train
v2
Sensor network script: Node: turbidity | code: stn | fields: type, reading, lat, qc Sensor: visibility | fields: level, ts, lat, reading Task: Retrieve depth from turbidity that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013738
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: ts, level, lon, value Sensor: evaporation | fields: depth, value, qc, reading Task: Retrieve reading from cloud_cover that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013739
train
v2
Sensor network script: Node: pressure | code: prt | fields: type, lon, value, reading Sensor: rainfall | fields: lon, ts, value, unit Task: Retrieve reading from pressure that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013740
train
v2
Sensor network script: Node: uv_index | code: thr | fields: reading, type, ts, value Sensor: humidity | fields: type, value, ts, lat Task: Retrieve value from uv_index that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013741
train
v2
Sensor network script: Node: uv_index | code: mst | fields: unit, lat, lon, qc Sensor: snow_depth | fields: reading, type, qc, unit Task: Fetch reading from uv_index that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013742
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, lat, lon, depth Sensor: pressure | fields: lat, reading, unit, level Task: Get depth from visibility where qc appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013743
train
v1
Sensor network script: Node: uv_index | code: stn | fields: lon, qc, reading, lat Sensor: sunlight | fields: ts, value, qc, lon Task: Fetch lat from uv_index where depth exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013744
train
v3
Sensor network script: Node: humidity | code: hub | fields: type, level, ts, value Sensor: pressure | fields: ts, depth, level, lat Task: Get value from humidity where depth exceeds the minimum value from pressure for the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013745
train
v3
Sensor network script: Node: sunlight | code: stn | fields: depth, lon, ts, unit Sensor: wind_speed | fields: reading, level, unit, qc Task: Get value from sunlight where reading exceeds the minimum reading from wind_speed for the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013746
train
v1
Sensor network script: Node: lightning | code: thr | fields: value, reading, lon, lat Sensor: dew_point | fields: unit, type, ts, lon Task: Get lat from lightning where type appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013747
train
v3
Sensor network script: Node: lightning | code: gst | fields: level, unit, reading, depth Sensor: air_quality | fields: unit, depth, lon, value Task: Retrieve lon from lightning with value above the MAX(depth) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013748
train
v2
Sensor network script: Node: turbidity | code: thr | fields: ts, lon, unit, depth Sensor: visibility | fields: type, lat, lon, reading Task: Fetch depth from turbidity that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013749
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: type, level, lon, unit Sensor: cloud_cover | fields: type, unit, value, lat Task: Retrieve level from soil_moisture that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013750
train
v3
Sensor network script: Node: air_quality | code: stn | fields: qc, lat, type, lon Sensor: humidity | fields: unit, reading, depth, type Task: Retrieve depth from air_quality with reading above the MAX(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013751
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: qc, lat, depth, type Sensor: dew_point | fields: reading, depth, value, ts Task: Fetch level from snow_depth that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013752
train
v3
Sensor network script: Node: lightning | code: gst | fields: depth, qc, ts, value Sensor: visibility | fields: qc, reading, lat, ts Task: Retrieve level from lightning with value above the SUM(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013753
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: unit, value, depth, reading Sensor: sunlight | fields: unit, ts, reading, level Task: Get lat from snow_depth where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013754
train
v3
Sensor network script: Node: drought_index | code: stn | fields: unit, reading, lat, qc Sensor: air_quality | fields: ts, type, value, level Task: Retrieve lat from drought_index with depth above the MIN(depth) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013755
train
v3
Sensor network script: Node: uv_index | code: hub | fields: depth, ts, lat, reading Sensor: frost | fields: type, reading, qc, value Task: Retrieve lon from uv_index with value above the COUNT(reading) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013756
train
v1
Sensor network script: Node: pressure | code: stn | fields: reading, type, unit, lon Sensor: sunlight | fields: reading, level, lat, value Task: Fetch lon from pressure where ts exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013757
train
v1
Sensor network script: Node: pressure | code: clr | fields: value, lat, unit, ts Sensor: humidity | fields: unit, reading, ts, level Task: Fetch reading from pressure where unit exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013758
train
v3
Sensor network script: Node: temperature | code: hub | fields: value, reading, depth, level Sensor: air_quality | fields: reading, lon, lat, level Task: Get reading from temperature where depth exceeds the average value from air_quality for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013759
train
v2
Sensor network script: Node: frost | code: gst | fields: value, lat, reading, lon Sensor: dew_point | fields: reading, lat, value, level Task: Fetch depth from frost that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013760
train
v1
Sensor network script: Node: pressure | code: gst | fields: type, value, unit, depth Sensor: humidity | fields: ts, lon, lat, qc Task: Get lat from pressure where unit appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013761
train
v1
Sensor network script: Node: lightning | code: thr | fields: depth, lat, type, reading Sensor: frost | fields: depth, lon, reading, level Task: Fetch reading from lightning where type exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013762
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: reading, lat, unit, value Sensor: uv_index | fields: lon, type, reading, qc Task: Retrieve depth from soil_moisture whose type is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013763
train
v3
Sensor network script: Node: dew_point | code: ref | fields: type, ts, qc, level Sensor: soil_moisture | fields: ts, depth, lon, type Task: Fetch level from dew_point where value is greater than the total of depth in soil_moisture for matching depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013764
train
v1
Sensor network script: Node: uv_index | code: ref | fields: type, lon, reading, level Sensor: drought_index | fields: lat, lon, level, type Task: Fetch value from uv_index where unit exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013765
train
v3
Sensor network script: Node: drought_index | code: stn | fields: ts, level, unit, lat Sensor: dew_point | fields: qc, depth, unit, level Task: Fetch level from drought_index where depth is greater than the maximum of depth in dew_point for matching type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013766
train
v3
Sensor network script: Node: uv_index | code: clr | fields: lon, value, depth, ts Sensor: sunlight | fields: lon, depth, qc, value Task: Get lat from uv_index where reading exceeds the count of depth from sunlight for the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013767
train
v1
Sensor network script: Node: frost | code: prt | fields: qc, lat, reading, depth Sensor: visibility | fields: value, lon, qc, type Task: Fetch level from frost where type exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013768
train
v1
Sensor network script: Node: sunlight | code: gst | fields: depth, lat, qc, value Sensor: pressure | fields: unit, qc, level, value Task: Get depth from sunlight where unit appears in pressure readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013769
train
v2
Sensor network script: Node: humidity | code: thr | fields: unit, value, type, lat Sensor: evaporation | fields: qc, type, unit, level Task: Get level from humidity where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013770
train
v2
Sensor network script: Node: air_quality | code: hub | fields: depth, ts, reading, unit Sensor: evaporation | fields: level, reading, unit, depth Task: Retrieve depth from air_quality that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013771
train
v3
Sensor network script: Node: temperature | code: clr | fields: qc, unit, ts, lon Sensor: snow_depth | fields: type, unit, qc, value Task: Get level from temperature where depth exceeds the count of value from snow_depth for the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013772
train
v2
Sensor network script: Node: temperature | code: thr | fields: lon, unit, reading, level Sensor: air_quality | fields: qc, lon, ts, depth Task: Get reading from temperature where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013773
train
v2
Sensor network script: Node: humidity | code: clr | fields: value, level, ts, depth Sensor: pressure | fields: qc, value, lon, type Task: Get depth from humidity where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013774
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: type, ts, lon, unit Sensor: dew_point | fields: value, unit, depth, type Task: Retrieve reading from snow_depth that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013775
train
v2
Sensor network script: Node: sunlight | code: gst | fields: depth, type, reading, value Sensor: air_quality | fields: level, type, lat, reading Task: Retrieve value from sunlight that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013776
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: unit, type, lat, lon Sensor: evaporation | fields: reading, lon, qc, type Task: Get depth from snow_depth where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013777
train
v1
Sensor network script: Node: dew_point | code: stn | fields: type, lon, reading, depth Sensor: drought_index | fields: lon, value, reading, unit Task: Get reading from dew_point where qc appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013778
train
v1
Sensor network script: Node: air_quality | code: ref | fields: lon, unit, value, qc Sensor: temperature | fields: ts, level, type, lon Task: Get lon from air_quality where qc appears in temperature readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013779
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: ts, qc, unit, type Sensor: lightning | fields: lat, depth, unit, type Task: Get lon from soil_moisture where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013780
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: type, ts, value, reading Sensor: evaporation | fields: lon, type, ts, level Task: Retrieve reading from snow_depth with depth above the SUM(reading) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013781
train
v1
Sensor network script: Node: dew_point | code: mst | fields: reading, value, lat, depth Sensor: uv_index | fields: reading, value, lon, depth Task: Retrieve lat from dew_point whose type is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013782
train
v3
Sensor network script: Node: drought_index | code: mst | fields: ts, reading, level, lat Sensor: air_quality | fields: lon, type, level, ts Task: Fetch lat from drought_index where reading is greater than the count of of reading in air_quality for matching qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013783
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: lon, value, unit, depth Sensor: temperature | fields: lon, value, lat, ts Task: Retrieve level from cloud_cover with reading above the MAX(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013784
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lon, depth, unit, qc Sensor: sunlight | fields: lon, type, qc, depth Task: Get level from evaporation where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013785
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: value, ts, lat, depth Sensor: turbidity | fields: reading, level, type, depth Task: Get lat from snow_depth where qc appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013786
train
v3
Sensor network script: Node: sunlight | code: clr | fields: reading, lat, depth, unit Sensor: temperature | fields: type, depth, lon, level Task: Retrieve reading from sunlight with value above the AVG(value) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013787
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: unit, ts, level, lon Sensor: air_quality | fields: reading, qc, level, unit Task: Retrieve depth from wind_speed that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013788
train
v2
Sensor network script: Node: pressure | code: thr | fields: qc, depth, ts, lon Sensor: lightning | fields: reading, depth, type, lon Task: Fetch level from pressure that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013789
train
v1
Sensor network script: Node: pressure | code: clr | fields: lon, type, value, reading Sensor: wind_speed | fields: unit, depth, lon, reading Task: Retrieve lat from pressure whose unit is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013790
train
v3
Sensor network script: Node: temperature | code: stn | fields: depth, type, unit, qc Sensor: dew_point | fields: type, ts, lon, lat Task: Retrieve level from temperature with reading above the SUM(value) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013791
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: value, depth, lat, lon Sensor: air_quality | fields: value, level, ts, qc Task: Fetch level from snow_depth where depth exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013792
train
v1
Sensor network script: Node: air_quality | code: clr | fields: qc, level, value, unit Sensor: evaporation | fields: ts, type, unit, reading Task: Fetch value from air_quality where qc exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013793
train
v1
Sensor network script: Node: air_quality | code: prt | fields: depth, lat, value, ts Sensor: temperature | fields: lon, type, level, reading Task: Retrieve reading from air_quality whose depth is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013794
train
v2
Sensor network script: Node: frost | code: stn | fields: lat, depth, value, level Sensor: humidity | fields: unit, value, depth, reading Task: Get lon from frost where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013795
train
v2
Sensor network script: Node: air_quality | code: clr | fields: ts, type, qc, lat Sensor: pressure | fields: value, level, type, lon Task: Fetch reading from air_quality that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013796
train
v2
Sensor network script: Node: dew_point | code: mst | fields: depth, type, level, value Sensor: wind_speed | fields: ts, lon, reading, lat Task: Retrieve lon from dew_point that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013797
train
v2
Sensor network script: Node: lightning | code: gst | fields: depth, unit, type, value Sensor: sunlight | fields: qc, lon, level, depth Task: Get lat from lightning where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013798
train
v2
Sensor network script: Node: evaporation | code: ref | fields: ts, level, lon, lat Sensor: soil_moisture | fields: level, type, reading, qc Task: Get value from evaporation where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013799
train