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: lightning | code: gst | fields: unit, level, qc, depth Sensor: frost | fields: ts, qc, value, type Task: Retrieve reading from lightning whose type is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019600
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: qc, lat, unit, ts Sensor: air_quality | fields: type, level, depth, ts Task: Get depth from soil_moisture where depth exceeds the total reading from air_quality for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019601
train
v1
Sensor network script: Node: pressure | code: prt | fields: qc, unit, ts, level Sensor: evaporation | fields: ts, depth, lat, level Task: Retrieve depth from pressure whose unit is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019602
train
v2
Sensor network script: Node: frost | code: ref | fields: lon, reading, qc, level Sensor: evaporation | fields: qc, level, depth, type Task: Get reading from frost where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019603
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: lat, unit, reading, lon Sensor: dew_point | fields: depth, level, type, ts Task: Retrieve depth from snow_depth that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019604
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: ts, level, qc, depth Sensor: air_quality | fields: reading, ts, level, lon Task: Retrieve level from snow_depth that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019605
train
v3
Sensor network script: Node: uv_index | code: thr | fields: reading, ts, value, qc Sensor: air_quality | fields: depth, qc, lat, unit Task: Fetch reading from uv_index where reading is greater than the maximum of value in air_quality for matching depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019606
train
v1
Sensor network script: Node: pressure | code: prt | fields: type, reading, depth, unit Sensor: evaporation | fields: ts, reading, depth, lon Task: Fetch reading from pressure where unit exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019607
train
v1
Sensor network script: Node: evaporation | code: ref | fields: qc, lon, ts, unit Sensor: pressure | fields: lon, type, lat, ts Task: Fetch depth from evaporation where unit exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019608
train
v3
Sensor network script: Node: air_quality | code: prt | fields: qc, reading, lon, unit Sensor: frost | fields: lat, unit, level, ts Task: Get reading from air_quality where reading exceeds the minimum reading from frost for the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019609
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: ts, unit, qc, lon Sensor: wind_speed | fields: lat, type, reading, depth Task: Retrieve lon from soil_moisture with reading above the AVG(value) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019610
train
v2
Sensor network script: Node: pressure | code: ref | fields: qc, reading, value, level Sensor: visibility | fields: lat, depth, ts, type Task: Retrieve lat from pressure that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019611
train
v2
Sensor network script: Node: frost | code: prt | fields: depth, lon, level, value Sensor: uv_index | fields: level, depth, ts, value Task: Fetch lon from frost that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019612
train
v1
Sensor network script: Node: sunlight | code: prt | fields: depth, qc, lat, unit Sensor: humidity | fields: type, level, lon, unit Task: Fetch depth from sunlight where qc exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019613
train
v1
Sensor network script: Node: sunlight | code: stn | fields: level, depth, unit, reading Sensor: wind_speed | fields: value, qc, unit, ts Task: Fetch depth from sunlight where type exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019614
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: reading, unit, depth, qc Sensor: pressure | fields: value, lon, type, unit Task: Fetch value from soil_moisture that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( 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", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019615
train
v2
Sensor network script: Node: visibility | code: mst | fields: type, reading, unit, level Sensor: frost | fields: lon, ts, type, unit Task: Fetch depth from visibility that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019616
train
v3
Sensor network script: Node: frost | code: thr | fields: ts, level, value, qc Sensor: cloud_cover | fields: type, qc, level, lat Task: Retrieve lat from frost with depth above the SUM(depth) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019617
train
v1
Sensor network script: Node: drought_index | code: gst | fields: type, lon, level, lat Sensor: soil_moisture | fields: unit, depth, ts, type Task: Fetch reading from drought_index where ts exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019618
train
v2
Sensor network script: Node: drought_index | code: prt | fields: lon, level, unit, value Sensor: visibility | fields: reading, type, lat, unit Task: Retrieve lat from drought_index that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019619
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lat, reading, depth, value Sensor: visibility | fields: lon, unit, lat, value Task: Get value from cloud_cover where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019620
train
v1
Sensor network script: Node: evaporation | code: gst | fields: lat, unit, depth, value Sensor: air_quality | fields: lon, value, reading, qc Task: Retrieve depth from evaporation whose qc is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019621
train
v3
Sensor network script: Node: visibility | code: stn | fields: value, level, type, unit Sensor: uv_index | fields: value, reading, lat, depth Task: Fetch lat from visibility where value is greater than the minimum of value in uv_index for matching qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019622
train
v2
Sensor network script: Node: rainfall | code: hub | fields: reading, lat, type, depth Sensor: visibility | fields: lat, unit, depth, ts Task: Retrieve depth from rainfall that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019623
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: lat, reading, ts, value Sensor: drought_index | fields: unit, lon, level, lat Task: Fetch level from wind_speed where qc exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019624
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: reading, level, unit, type Sensor: turbidity | fields: type, lon, unit, ts Task: Fetch level from soil_moisture where depth is greater than the average of depth in turbidity for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019625
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: reading, ts, level, value Sensor: turbidity | fields: lat, type, depth, ts Task: Retrieve depth from snow_depth with value above the SUM(reading) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019626
train
v3
Sensor network script: Node: dew_point | code: stn | fields: ts, lon, depth, unit Sensor: visibility | fields: lon, level, lat, value Task: Get reading from dew_point where depth exceeds the total depth from visibility for the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019627
train
v2
Sensor network script: Node: frost | code: clr | fields: qc, value, reading, depth Sensor: uv_index | fields: depth, lat, qc, value Task: Fetch value from frost that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019628
train
v2
Sensor network script: Node: pressure | code: clr | fields: depth, lon, lat, ts Sensor: humidity | fields: unit, value, type, level Task: Retrieve lat from pressure that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019629
train
v2
Sensor network script: Node: frost | code: stn | fields: level, depth, value, qc Sensor: cloud_cover | fields: ts, reading, unit, level Task: Retrieve reading from frost that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019630
train
v2
Sensor network script: Node: turbidity | code: thr | fields: value, unit, depth, qc Sensor: rainfall | fields: ts, lon, lat, unit Task: Retrieve reading from turbidity that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019631
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: ts, type, reading, lon Sensor: temperature | fields: lat, reading, type, unit Task: Retrieve reading from snow_depth that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019632
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: unit, level, reading, ts Sensor: air_quality | fields: lat, depth, type, reading Task: Fetch level from snow_depth that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019633
train
v3
Sensor network script: Node: rainfall | code: hub | fields: qc, type, lat, value Sensor: soil_moisture | fields: lon, type, ts, reading Task: Retrieve value from rainfall with value above the MIN(value) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019634
train
v1
Sensor network script: Node: uv_index | code: ref | fields: depth, lon, reading, lat Sensor: humidity | fields: unit, type, level, ts Task: Get value from uv_index where qc appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019635
train
v3
Sensor network script: Node: pressure | code: hub | fields: lon, depth, type, lat Sensor: turbidity | fields: ts, value, level, lat Task: Retrieve lat from pressure with depth above the SUM(value) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019636
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: lat, value, level, ts Sensor: drought_index | fields: value, level, type, reading Task: Retrieve level from wind_speed whose type is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019637
train
v3
Sensor network script: Node: sunlight | code: clr | fields: value, lon, qc, unit Sensor: lightning | fields: lat, unit, lon, value Task: Get reading from sunlight where value exceeds the average value from lightning for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019638
train
v1
Sensor network script: Node: temperature | code: prt | fields: reading, lat, value, unit Sensor: humidity | fields: qc, unit, level, ts Task: Get lon from temperature where unit appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019639
train
v2
Sensor network script: Node: uv_index | code: prt | fields: level, depth, unit, qc Sensor: wind_speed | fields: unit, qc, ts, lon Task: Fetch reading from uv_index that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019640
train
v2
Sensor network script: Node: pressure | code: mst | fields: depth, unit, lat, lon Sensor: snow_depth | fields: ts, value, depth, qc Task: Retrieve level from pressure that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019641
train
v1
Sensor network script: Node: pressure | code: mst | fields: depth, value, lon, qc Sensor: soil_moisture | fields: level, reading, value, depth Task: Fetch lat from pressure where qc exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019642
train
v3
Sensor network script: Node: frost | code: ref | fields: lon, depth, unit, lat Sensor: dew_point | fields: depth, lat, level, reading Task: Retrieve value from frost with reading above the MAX(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019643
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: qc, reading, lat, type Sensor: cloud_cover | fields: lon, value, type, qc Task: Retrieve lon from snow_depth with value above the MIN(reading) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019644
train
v2
Sensor network script: Node: frost | code: hub | fields: unit, value, qc, ts Sensor: cloud_cover | fields: lat, unit, lon, value Task: Get depth from frost where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019645
train
v1
Sensor network script: Node: temperature | code: thr | fields: qc, type, lon, unit Sensor: cloud_cover | fields: ts, lon, level, unit Task: Retrieve depth from temperature whose qc is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019646
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: unit, qc, ts, lon Sensor: visibility | fields: level, lon, ts, reading Task: Fetch reading from soil_moisture where value is greater than the average of reading in visibility for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019647
train
v2
Sensor network script: Node: drought_index | code: thr | fields: qc, depth, ts, type Sensor: visibility | fields: reading, qc, level, unit Task: Get reading from drought_index where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019648
train
v1
Sensor network script: Node: uv_index | code: thr | fields: level, unit, reading, qc Sensor: air_quality | fields: value, lon, unit, ts Task: Retrieve depth from uv_index whose qc is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019649
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: qc, depth, type, ts Sensor: air_quality | fields: depth, unit, qc, value Task: Retrieve lon from snow_depth whose ts is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="ts", 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": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019650
train
v3
Sensor network script: Node: drought_index | code: clr | fields: depth, type, reading, qc Sensor: uv_index | fields: type, ts, depth, lat Task: Retrieve reading from drought_index with depth above the SUM(value) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019651
train
v3
Sensor network script: Node: temperature | code: hub | fields: value, lon, qc, level Sensor: cloud_cover | fields: lat, unit, lon, qc Task: Retrieve lon from temperature with reading above the SUM(depth) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019652
train
v2
Sensor network script: Node: air_quality | code: mst | fields: level, value, type, ts Sensor: drought_index | fields: reading, ts, lat, unit Task: Fetch lat from air_quality that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019653
train
v3
Sensor network script: Node: air_quality | code: ref | fields: ts, qc, value, unit Sensor: uv_index | fields: depth, reading, type, value Task: Fetch lon from air_quality where depth is greater than the total of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "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_019654
train
v2
Sensor network script: Node: drought_index | code: hub | fields: qc, depth, value, type Sensor: pressure | fields: level, lon, qc, ts Task: Retrieve level from drought_index that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019655
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lon, qc, lat, unit Sensor: sunlight | fields: ts, unit, lat, value Task: Fetch level from turbidity where reading is greater than the maximum of depth in sunlight for matching ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019656
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: qc, level, lat, value Sensor: sunlight | fields: depth, unit, value, reading Task: Get level from snow_depth where depth exceeds the count of value from sunlight for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019657
train
v3
Sensor network script: Node: drought_index | code: clr | fields: lat, ts, depth, qc Sensor: temperature | fields: ts, value, qc, lon Task: Retrieve lat from drought_index with reading above the SUM(reading) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019658
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: depth, ts, level, lon Sensor: uv_index | fields: qc, ts, level, lon Task: Get reading from wind_speed where depth appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019659
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: reading, unit, ts, qc Sensor: lightning | fields: qc, value, reading, ts Task: Get lat from snow_depth where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019660
train
v2
Sensor network script: Node: temperature | code: mst | fields: unit, ts, level, qc Sensor: snow_depth | fields: lat, value, unit, depth Task: Fetch lon from temperature that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019661
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: depth, type, lon, ts Sensor: drought_index | fields: unit, type, lat, level Task: Fetch level from snow_depth where reading is greater than the count of of value in drought_index for matching type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019662
train
v3
Sensor network script: Node: visibility | code: clr | fields: type, ts, qc, depth Sensor: cloud_cover | fields: ts, type, lat, depth Task: Retrieve level from visibility with depth above the AVG(value) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019663
train
v2
Sensor network script: Node: visibility | code: stn | fields: lon, reading, level, ts Sensor: soil_moisture | fields: unit, lon, reading, level Task: Get lat from visibility where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019664
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: ts, lon, value, qc Sensor: drought_index | fields: qc, unit, ts, value Task: Get reading from snow_depth where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019665
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: lat, ts, reading, unit Sensor: frost | fields: depth, qc, unit, lat Task: Get depth from soil_moisture where depth appears in frost readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "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_019666
train
v3
Sensor network script: Node: drought_index | code: ref | fields: level, type, lon, lat Sensor: sunlight | fields: type, qc, unit, depth Task: Retrieve lon from drought_index with value above the AVG(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019667
train
v3
Sensor network script: Node: air_quality | code: gst | fields: qc, unit, lat, value Sensor: pressure | fields: type, value, ts, unit Task: Get lat from air_quality where depth exceeds the minimum depth from pressure for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019668
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: value, qc, level, ts Sensor: evaporation | fields: reading, unit, lon, depth Task: Get value from snow_depth where value exceeds the total reading from evaporation for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019669
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: type, value, reading, qc Sensor: turbidity | fields: level, unit, qc, reading Task: Get level from cloud_cover where depth appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019670
train
v1
Sensor network script: Node: turbidity | code: clr | fields: unit, depth, qc, lat Sensor: dew_point | fields: lon, qc, type, ts Task: Retrieve value from turbidity whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019671
train
v1
Sensor network script: Node: uv_index | code: thr | fields: qc, unit, value, type Sensor: dew_point | fields: type, level, qc, lat Task: Retrieve reading from uv_index whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019672
train
v2
Sensor network script: Node: humidity | code: gst | fields: level, depth, ts, lon Sensor: sunlight | fields: ts, value, qc, unit Task: Get lat from humidity where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019673
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: level, lat, value, reading Sensor: dew_point | fields: depth, value, reading, ts Task: Get depth from cloud_cover where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019674
train
v1
Sensor network script: Node: rainfall | code: prt | fields: depth, level, reading, lon Sensor: temperature | fields: lon, level, lat, value Task: Fetch depth from rainfall where qc exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019675
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: level, qc, ts, lat Sensor: lightning | fields: unit, lat, level, lon Task: Fetch value from wind_speed that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019676
train
v3
Sensor network script: Node: sunlight | code: thr | fields: unit, qc, lat, depth Sensor: wind_speed | fields: depth, unit, value, lat Task: Retrieve value from sunlight with value above the COUNT(depth) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019677
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: qc, lat, type, unit Sensor: frost | fields: level, type, depth, value Task: Fetch value from snow_depth that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019678
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: qc, unit, value, level Sensor: turbidity | fields: level, reading, value, ts Task: Retrieve value from cloud_cover that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019679
train
v1
Sensor network script: Node: humidity | code: hub | fields: unit, qc, value, type Sensor: sunlight | fields: unit, value, qc, lon Task: Fetch lon from humidity where type exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019680
train
v2
Sensor network script: Node: pressure | code: ref | fields: depth, reading, type, ts Sensor: air_quality | fields: unit, qc, depth, type Task: Get lon from pressure where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019681
train
v2
Sensor network script: Node: lightning | code: clr | fields: reading, ts, type, level Sensor: wind_speed | fields: lon, level, unit, reading Task: Retrieve lon from lightning that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019682
train
v2
Sensor network script: Node: drought_index | code: prt | fields: depth, ts, lon, level Sensor: humidity | fields: depth, value, ts, unit Task: Fetch value from drought_index that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019683
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: reading, level, value, qc Sensor: turbidity | fields: type, depth, value, lon Task: Retrieve reading from snow_depth that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019684
train
v2
Sensor network script: Node: pressure | code: thr | fields: lon, ts, value, reading Sensor: wind_speed | fields: ts, level, value, type Task: Retrieve level from pressure that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019685
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, depth, qc, value Sensor: temperature | fields: level, depth, reading, unit Task: Retrieve depth from dew_point that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019686
train
v3
Sensor network script: Node: visibility | code: gst | fields: ts, lat, lon, reading Sensor: dew_point | fields: unit, type, qc, reading Task: Get lat from visibility where depth exceeds the total value from dew_point for the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019687
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: lat, qc, value, lon Sensor: rainfall | fields: lat, reading, ts, level Task: Retrieve level from wind_speed that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019688
train
v2
Sensor network script: Node: humidity | code: ref | fields: value, qc, level, lat Sensor: cloud_cover | fields: reading, value, type, unit Task: Retrieve lon from humidity that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019689
train
v3
Sensor network script: Node: air_quality | code: prt | fields: reading, lon, ts, type Sensor: humidity | fields: ts, reading, depth, unit Task: Retrieve level from air_quality with depth above the COUNT(value) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019690
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: qc, lon, value, type Sensor: humidity | fields: ts, value, lon, level Task: Retrieve depth from soil_moisture that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019691
train
v3
Sensor network script: Node: air_quality | code: clr | fields: level, unit, lon, type Sensor: snow_depth | fields: value, reading, qc, unit Task: Retrieve lon from air_quality with value above the MAX(reading) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019692
train
v1
Sensor network script: Node: air_quality | code: mst | fields: value, unit, ts, lat Sensor: dew_point | fields: lat, value, type, ts Task: Get lat from air_quality where depth appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019693
train
v3
Sensor network script: Node: frost | code: ref | fields: depth, type, ts, level Sensor: evaporation | fields: depth, value, reading, lat Task: Fetch reading from frost where reading is greater than the total of reading in evaporation for matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019694
train
v3
Sensor network script: Node: air_quality | code: clr | fields: qc, lat, unit, type Sensor: soil_moisture | fields: lat, reading, ts, level Task: Get reading from air_quality where value exceeds the minimum value from soil_moisture for the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019695
train
v3
Sensor network script: Node: pressure | code: gst | fields: qc, type, value, ts Sensor: evaporation | fields: lat, depth, ts, lon Task: Retrieve lon from pressure with value above the MAX(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019696
train
v1
Sensor network script: Node: temperature | code: ref | fields: type, depth, value, unit Sensor: snow_depth | fields: value, level, lon, depth Task: Get reading from temperature where ts appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019697
train
v2
Sensor network script: Node: uv_index | code: mst | fields: lat, type, lon, level Sensor: cloud_cover | fields: reading, value, depth, type Task: Retrieve level from uv_index that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019698
train
v1
Sensor network script: Node: visibility | code: clr | fields: ts, unit, value, lat Sensor: pressure | fields: ts, level, lon, depth Task: Fetch lon from visibility where qc exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019699
train