variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: temperature | code: clr | fields: reading, lat, level, type Sensor: evaporation | fields: reading, value, type, lat Task: Retrieve lat from temperature whose depth is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080800
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: lon, type, lat, reading Sensor: temperature | fields: qc, type, depth, reading Task: Retrieve depth from wind_speed whose type is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080801
train
v3
Sensor network script: Node: sunlight | code: ref | fields: value, reading, lon, type Sensor: frost | fields: unit, lat, ts, value Task: Fetch lat from sunlight where reading is greater than the minimum of depth in frost for matching ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080802
train
v2
Sensor network script: Node: dew_point | code: hub | fields: level, ts, depth, qc Sensor: lightning | fields: depth, reading, lon, value Task: Fetch level from dew_point that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "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_080803
train
v2
Sensor network script: Node: dew_point | code: ref | fields: qc, lat, value, reading Sensor: air_quality | fields: depth, value, lon, lat Task: Get depth from dew_point where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080804
train
v1
Sensor network script: Node: temperature | code: gst | fields: type, level, depth, lat Sensor: cloud_cover | fields: reading, unit, qc, level Task: Fetch level from temperature where depth exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080805
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: value, lat, level, type Sensor: pressure | fields: ts, unit, depth, type Task: Retrieve level from soil_moisture with depth above the SUM(depth) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080806
train
v3
Sensor network script: Node: uv_index | code: ref | fields: type, level, value, reading Sensor: sunlight | fields: value, level, type, unit Task: Fetch reading from uv_index where depth is greater than the total of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080807
train
v1
Sensor network script: Node: sunlight | code: prt | fields: type, reading, ts, lat Sensor: snow_depth | fields: type, reading, level, value Task: Get value from sunlight where unit appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080808
train
v3
Sensor network script: Node: sunlight | code: clr | fields: reading, unit, value, ts Sensor: wind_speed | fields: reading, unit, type, ts Task: Fetch depth from sunlight where depth is greater than the average of depth in wind_speed for matching type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080809
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: depth, qc, reading, unit Sensor: dew_point | fields: level, reading, unit, lon Task: Retrieve level from wind_speed whose unit is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080810
train
v1
Sensor network script: Node: temperature | code: prt | fields: type, level, depth, reading Sensor: wind_speed | fields: ts, lat, value, qc Task: Fetch value from temperature where qc exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080811
train
v2
Sensor network script: Node: evaporation | code: mst | fields: qc, lon, unit, lat Sensor: uv_index | fields: unit, ts, value, type Task: Retrieve level from evaporation that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080812
train
v1
Sensor network script: Node: lightning | code: stn | fields: ts, lat, level, type Sensor: soil_moisture | fields: reading, depth, type, lat Task: Retrieve level from lightning whose depth is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080813
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lon, lat, reading, qc Sensor: humidity | fields: value, type, depth, qc Task: Fetch depth from dew_point where depth exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080814
train
v2
Sensor network script: Node: sunlight | code: mst | fields: reading, lat, lon, type Sensor: wind_speed | fields: ts, lat, type, qc Task: Retrieve depth from sunlight that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080815
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: level, lon, type, depth Sensor: uv_index | fields: depth, type, qc, lat Task: Fetch level from soil_moisture where unit exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080816
train
v2
Sensor network script: Node: uv_index | code: hub | fields: depth, value, lat, qc Sensor: visibility | fields: unit, lat, reading, lon Task: Get level from uv_index where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080817
train
v2
Sensor network script: Node: frost | code: mst | fields: lat, depth, ts, level Sensor: evaporation | fields: ts, value, reading, qc Task: Retrieve lat from frost that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080818
train
v1
Sensor network script: Node: air_quality | code: ref | fields: unit, type, qc, ts Sensor: drought_index | fields: ts, reading, value, depth Task: Get value from air_quality where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080819
train
v1
Sensor network script: Node: pressure | code: hub | fields: value, qc, lat, type Sensor: air_quality | fields: type, level, unit, lat Task: Fetch lon from pressure where unit exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080820
train
v2
Sensor network script: Node: pressure | code: mst | fields: depth, qc, lat, type Sensor: sunlight | fields: lon, unit, depth, lat Task: Get lat from pressure where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080821
train
v3
Sensor network script: Node: rainfall | code: clr | fields: ts, level, unit, depth Sensor: pressure | fields: reading, ts, type, lon Task: Fetch value from rainfall where depth is greater than the average of depth in pressure for matching type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080822
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: unit, type, qc, reading Sensor: dew_point | fields: lat, type, ts, value Task: Retrieve level 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="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080823
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: depth, type, level, lon Sensor: soil_moisture | fields: depth, lon, value, qc Task: Get lat from cloud_cover where depth exceeds the total depth from soil_moisture for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080824
train
v1
Sensor network script: Node: frost | code: stn | fields: value, level, qc, lon Sensor: cloud_cover | fields: level, ts, lat, unit Task: Fetch depth from frost where qc exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080825
train
v1
Sensor network script: Node: evaporation | code: hub | fields: level, ts, lat, type Sensor: soil_moisture | fields: type, lon, level, reading Task: Get value from evaporation where type appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080826
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lon, ts, level, unit Sensor: dew_point | fields: reading, depth, ts, qc Task: Get depth from soil_moisture where reading exceeds the minimum value from dew_point for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080827
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: level, depth, qc, type Sensor: lightning | fields: qc, type, lat, level Task: Get depth from wind_speed where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080828
train
v3
Sensor network script: Node: uv_index | code: stn | fields: lon, level, value, unit Sensor: temperature | fields: level, lat, reading, lon Task: Retrieve value from uv_index with reading above the AVG(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080829
train
v1
Sensor network script: Node: evaporation | code: ref | fields: level, qc, reading, lon Sensor: humidity | fields: type, ts, lat, depth Task: Fetch lat from evaporation where depth exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080830
train
v1
Sensor network script: Node: frost | code: prt | fields: ts, unit, value, reading Sensor: rainfall | fields: value, depth, lon, qc Task: Fetch lon from frost where type exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080831
train
v3
Sensor network script: Node: frost | code: thr | fields: qc, lat, unit, depth Sensor: evaporation | fields: reading, type, qc, lon Task: Fetch value from frost where depth is greater than the minimum of value in evaporation for matching type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080832
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: qc, ts, lon, reading Sensor: evaporation | fields: type, lat, level, qc Task: Fetch lon from cloud_cover where ts exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080833
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: value, lon, lat, reading Sensor: snow_depth | fields: level, lon, unit, lat Task: Retrieve lon from soil_moisture whose qc is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080834
train
v1
Sensor network script: Node: frost | code: clr | fields: lon, reading, unit, level Sensor: wind_speed | fields: lon, unit, type, depth Task: Retrieve level from frost whose depth is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080835
train
v3
Sensor network script: Node: sunlight | code: prt | fields: unit, level, reading, lat Sensor: soil_moisture | fields: lon, level, type, value Task: Fetch value from sunlight where reading is greater than the count of of depth in soil_moisture for matching ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080836
train
v2
Sensor network script: Node: rainfall | code: gst | fields: value, qc, type, unit Sensor: temperature | fields: lon, lat, depth, reading Task: Get reading from rainfall where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080837
train
v1
Sensor network script: Node: dew_point | code: stn | fields: ts, depth, unit, lat Sensor: wind_speed | fields: value, level, type, ts Task: Fetch reading from dew_point where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080838
train
v3
Sensor network script: Node: air_quality | code: clr | fields: ts, unit, value, reading Sensor: turbidity | fields: level, depth, ts, lat Task: Fetch lat from air_quality where depth is greater than the average of value in turbidity for matching unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080839
train
v1
Sensor network script: Node: temperature | code: stn | fields: depth, reading, ts, lat Sensor: uv_index | fields: depth, qc, lon, unit Task: Get reading from temperature where ts appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080840
train
v2
Sensor network script: Node: dew_point | code: ref | fields: lon, unit, qc, depth Sensor: soil_moisture | fields: unit, value, lon, reading Task: Fetch lon from dew_point that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080841
train
v1
Sensor network script: Node: frost | code: mst | fields: depth, unit, value, lat Sensor: visibility | fields: level, lon, qc, ts Task: Retrieve value from frost whose ts is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080842
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: ts, reading, unit, lat Sensor: drought_index | fields: lon, reading, depth, lat Task: Retrieve lat from cloud_cover whose type is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080843
train
v3
Sensor network script: Node: dew_point | code: thr | fields: value, type, reading, ts Sensor: air_quality | fields: unit, lon, qc, reading Task: Get reading from dew_point where value exceeds the total depth from air_quality for the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080844
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: unit, level, lon, qc Sensor: sunlight | fields: ts, unit, type, value Task: Retrieve value from snow_depth whose ts is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080845
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: qc, unit, lon, lat Sensor: rainfall | fields: value, lon, qc, ts Task: Retrieve value from soil_moisture that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080846
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: value, qc, reading, lat Sensor: evaporation | fields: lon, qc, level, type Task: Get lat from snow_depth where depth appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080847
train
v3
Sensor network script: Node: uv_index | code: mst | fields: depth, unit, lon, type Sensor: rainfall | fields: unit, ts, lat, type Task: Get depth from uv_index where reading exceeds the count of reading from rainfall for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080848
train
v3
Sensor network script: Node: visibility | code: clr | fields: lon, qc, lat, unit Sensor: lightning | fields: level, depth, lon, qc Task: Get lon from visibility where value exceeds the total depth from lightning for the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080849
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: ts, value, type, lon Sensor: snow_depth | fields: value, lat, ts, unit Task: Get reading from cloud_cover where depth exceeds the total reading from snow_depth for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080850
train
v2
Sensor network script: Node: sunlight | code: prt | fields: depth, ts, type, value Sensor: wind_speed | fields: value, qc, depth, type Task: Retrieve depth from sunlight that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080851
train
v1
Sensor network script: Node: temperature | code: stn | fields: value, qc, type, level Sensor: evaporation | fields: value, lon, lat, level Task: Fetch level from temperature where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080852
train
v1
Sensor network script: Node: pressure | code: mst | fields: lon, qc, ts, lat Sensor: uv_index | fields: lon, unit, level, value Task: Get value from pressure where type appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080853
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: lon, lat, reading, type Sensor: frost | fields: lon, level, lat, type Task: Retrieve depth from soil_moisture with reading above the AVG(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080854
train
v3
Sensor network script: Node: rainfall | code: gst | fields: unit, ts, type, lat Sensor: snow_depth | fields: type, reading, unit, depth Task: Retrieve value from rainfall with value above the SUM(value) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080855
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lon, reading, ts, value Sensor: air_quality | fields: unit, lon, ts, depth Task: Get lon from cloud_cover where unit appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080856
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: unit, lon, lat, qc Sensor: drought_index | fields: qc, ts, level, reading Task: Fetch reading from snow_depth where type exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080857
train
v2
Sensor network script: Node: drought_index | code: stn | fields: level, lat, qc, ts Sensor: sunlight | fields: ts, level, reading, lat Task: Get value from drought_index where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080858
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: depth, type, level, ts Sensor: wind_speed | fields: type, depth, ts, unit Task: Retrieve depth from snow_depth with value above the MIN(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080859
train
v3
Sensor network script: Node: evaporation | code: stn | fields: unit, depth, value, ts Sensor: uv_index | fields: level, unit, ts, type Task: Fetch reading from evaporation where value is greater than the total of value in uv_index for matching type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080860
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: reading, level, ts, lat Sensor: sunlight | fields: type, unit, reading, lon Task: Get level from soil_moisture where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080861
train
v1
Sensor network script: Node: uv_index | code: gst | fields: value, lat, qc, unit Sensor: frost | fields: lon, unit, level, ts Task: Retrieve depth from uv_index whose depth is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080862
train
v2
Sensor network script: Node: rainfall | code: gst | fields: unit, lon, level, depth Sensor: cloud_cover | fields: level, reading, type, unit Task: Get reading from rainfall where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080863
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: depth, reading, level, type Sensor: temperature | fields: depth, unit, qc, reading Task: Get lat from soil_moisture where value exceeds the average depth from temperature for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080864
train
v1
Sensor network script: Node: rainfall | code: mst | fields: type, ts, level, lon Sensor: visibility | fields: ts, value, unit, type Task: Fetch reading from rainfall where depth exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080865
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: qc, ts, value, depth Sensor: sunlight | fields: value, ts, type, qc Task: Retrieve level from wind_speed that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080866
train
v2
Sensor network script: Node: temperature | code: thr | fields: lon, lat, depth, reading Sensor: visibility | fields: unit, depth, value, level Task: Get lon from temperature where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080867
train
v2
Sensor network script: Node: air_quality | code: gst | fields: type, depth, qc, lat Sensor: evaporation | fields: level, qc, lat, lon Task: Fetch lat from air_quality that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080868
train
v3
Sensor network script: Node: temperature | code: ref | fields: value, lon, lat, depth Sensor: rainfall | fields: unit, qc, value, lon Task: Get reading from temperature where value exceeds the minimum reading from rainfall for the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080869
train
v1
Sensor network script: Node: humidity | code: clr | fields: value, reading, qc, ts Sensor: sunlight | fields: value, unit, lat, ts Task: Get depth from humidity where depth appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080870
train
v2
Sensor network script: Node: dew_point | code: gst | fields: depth, type, lat, qc Sensor: uv_index | fields: level, lon, lat, value Task: Fetch level from dew_point that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080871
train
v2
Sensor network script: Node: evaporation | code: thr | fields: reading, lon, type, qc Sensor: uv_index | fields: unit, qc, level, type Task: Retrieve level from evaporation that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080872
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lat, lon, value, ts Sensor: cloud_cover | fields: qc, depth, lon, ts Task: Fetch level from soil_moisture where depth is greater than the minimum of reading in cloud_cover for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080873
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: lat, depth, type, unit Sensor: snow_depth | fields: unit, lon, type, value Task: Fetch lat from wind_speed where value is greater than the maximum of depth in snow_depth for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080874
train
v2
Sensor network script: Node: pressure | code: mst | fields: lat, value, qc, depth Sensor: rainfall | fields: qc, lat, ts, depth Task: Get depth from pressure where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080875
train
v1
Sensor network script: Node: rainfall | code: prt | fields: lon, depth, lat, level Sensor: temperature | fields: level, unit, reading, ts Task: Retrieve level from rainfall whose depth is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080876
train
v3
Sensor network script: Node: evaporation | code: ref | fields: lon, depth, reading, unit Sensor: visibility | fields: lat, unit, qc, reading Task: Get lat from evaporation where value exceeds the average value from visibility for the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080877
train
v2
Sensor network script: Node: sunlight | code: mst | fields: value, lat, lon, level Sensor: temperature | fields: unit, reading, lat, type Task: Retrieve lon from sunlight that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080878
train
v2
Sensor network script: Node: sunlight | code: ref | fields: ts, reading, lat, value Sensor: visibility | fields: depth, reading, type, lat Task: Retrieve depth from sunlight that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080879
train
v3
Sensor network script: Node: frost | code: clr | fields: level, lon, ts, type Sensor: rainfall | fields: ts, level, reading, value Task: Fetch value from frost where value is greater than the minimum of depth in rainfall for matching depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080880
train
v2
Sensor network script: Node: visibility | code: clr | fields: unit, reading, ts, qc Sensor: turbidity | fields: value, type, ts, lon Task: Get lon from visibility where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080881
train
v2
Sensor network script: Node: uv_index | code: mst | fields: ts, qc, value, unit Sensor: wind_speed | fields: lat, ts, qc, reading Task: Fetch value from uv_index that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080882
train
v1
Sensor network script: Node: uv_index | code: ref | fields: type, ts, value, unit Sensor: turbidity | fields: depth, ts, type, reading Task: Fetch reading from uv_index where ts exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080883
train
v1
Sensor network script: Node: rainfall | code: clr | fields: ts, value, qc, depth Sensor: turbidity | fields: reading, lat, value, lon Task: Retrieve level from rainfall whose type is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080884
train
v3
Sensor network script: Node: lightning | code: stn | fields: depth, type, lat, level Sensor: frost | fields: value, depth, unit, type Task: Retrieve lon from lightning with value above the MAX(value) of frost readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="type"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080885
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lat, reading, type, unit Sensor: visibility | fields: lat, value, level, type Task: Retrieve level from air_quality whose ts is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080886
train
v1
Sensor network script: Node: evaporation | code: mst | fields: qc, lat, depth, lon Sensor: frost | fields: qc, unit, ts, value Task: Retrieve reading from evaporation whose depth is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080887
train
v2
Sensor network script: Node: evaporation | code: gst | fields: ts, unit, level, qc Sensor: turbidity | fields: level, value, reading, depth Task: Retrieve lat from evaporation that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080888
train
v3
Sensor network script: Node: uv_index | code: mst | fields: qc, depth, ts, unit Sensor: soil_moisture | fields: ts, level, qc, type Task: Retrieve reading from uv_index with reading above the MAX(depth) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080889
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: unit, value, type, ts Sensor: wind_speed | fields: lon, unit, reading, lat Task: Get value from cloud_cover where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080890
train
v3
Sensor network script: Node: humidity | code: ref | fields: type, qc, lat, depth Sensor: soil_moisture | fields: ts, value, depth, level Task: Fetch reading from humidity where reading is greater than the maximum of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080891
train
v1
Sensor network script: Node: uv_index | code: hub | fields: type, depth, lon, value Sensor: frost | fields: reading, qc, type, depth Task: Get lon from uv_index where qc appears in frost readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080892
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lat, unit, ts, lon Sensor: pressure | fields: lat, lon, qc, reading Task: Get value from soil_moisture where depth exceeds the average reading from pressure for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080893
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: unit, value, depth, ts Sensor: wind_speed | fields: lat, ts, type, reading Task: Fetch depth from snow_depth where depth is greater than the total of depth in wind_speed for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080894
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: ts, value, lon, qc Sensor: drought_index | fields: lat, reading, depth, unit Task: Retrieve depth from cloud_cover that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080895
train
v3
Sensor network script: Node: visibility | code: ref | fields: lat, depth, value, reading Sensor: evaporation | fields: lon, unit, type, level Task: Get lon from visibility where reading exceeds the average value from evaporation for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080896
train
v1
Sensor network script: Node: temperature | code: gst | fields: lon, level, ts, unit Sensor: cloud_cover | fields: lat, ts, type, reading Task: Get lon from temperature where type appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080897
train
v1
Sensor network script: Node: humidity | code: hub | fields: reading, level, unit, lon Sensor: lightning | fields: qc, lat, ts, lon Task: Retrieve value from humidity whose qc is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080898
train
v2
Sensor network script: Node: dew_point | code: thr | fields: ts, qc, unit, type Sensor: rainfall | fields: reading, type, qc, lat Task: Fetch level from dew_point that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080899
train