variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: rainfall | code: mst | fields: ts, qc, type, unit Sensor: temperature | fields: type, reading, lon, depth Task: Retrieve level from rainfall with reading above the COUNT(reading) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010600
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: unit, level, lat, value Sensor: evaporation | fields: qc, reading, lon, unit Task: Fetch value from soil_moisture where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010601
train
v2
Sensor network script: Node: visibility | code: stn | fields: depth, qc, reading, level Sensor: dew_point | fields: unit, depth, ts, reading Task: Retrieve level from visibility that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010602
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: type, depth, lon, level Sensor: frost | fields: qc, ts, depth, level Task: Fetch level from soil_moisture where value is greater than the minimum of value in frost for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010603
train
v3
Sensor network script: Node: frost | code: hub | fields: level, qc, unit, ts Sensor: humidity | fields: lon, reading, ts, lat Task: Get value from frost where reading exceeds the average depth from humidity for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010604
train
v1
Sensor network script: Node: temperature | code: hub | fields: reading, lat, unit, value Sensor: soil_moisture | fields: value, type, depth, qc Task: Retrieve value from temperature whose unit is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010605
train
v3
Sensor network script: Node: frost | code: gst | fields: lon, qc, depth, reading Sensor: air_quality | fields: type, qc, depth, unit Task: Fetch lat from frost where reading is greater than the total of depth in air_quality for matching type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010606
train
v3
Sensor network script: Node: humidity | code: hub | fields: qc, value, reading, lon Sensor: dew_point | fields: qc, lat, lon, depth Task: Get lat from humidity where reading exceeds the average depth from dew_point for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010607
train
v1
Sensor network script: Node: temperature | code: clr | fields: lat, level, type, reading Sensor: dew_point | fields: lon, value, ts, reading Task: Fetch lat from temperature where unit exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010608
train
v1
Sensor network script: Node: rainfall | code: ref | fields: ts, lat, qc, unit Sensor: sunlight | fields: ts, value, lon, lat Task: Retrieve lat from rainfall whose unit is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010609
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: depth, reading, lat, type Sensor: rainfall | fields: lon, depth, ts, value Task: Get lat from wind_speed where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010610
train
v1
Sensor network script: Node: frost | code: thr | fields: depth, value, unit, type Sensor: evaporation | fields: type, qc, lat, level Task: Fetch lon from frost where ts exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010611
train
v3
Sensor network script: Node: uv_index | code: prt | fields: lat, ts, value, level Sensor: soil_moisture | fields: unit, depth, reading, lat Task: Get level from uv_index where reading exceeds the minimum depth from soil_moisture for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010612
train
v2
Sensor network script: Node: temperature | code: stn | fields: reading, depth, level, lon Sensor: wind_speed | fields: lon, value, depth, level Task: Fetch depth from temperature that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010613
train
v2
Sensor network script: Node: pressure | code: prt | fields: reading, ts, value, lon Sensor: evaporation | fields: ts, type, unit, value Task: Fetch depth from pressure that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010614
train
v1
Sensor network script: Node: turbidity | code: clr | fields: lon, depth, value, qc Sensor: evaporation | fields: qc, value, level, reading Task: Retrieve lon from turbidity whose qc is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010615
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, lon, lat, type Sensor: air_quality | fields: lat, qc, depth, value Task: Get lon from uv_index where reading exceeds the count of reading from air_quality for the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010616
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: reading, ts, unit, value Sensor: frost | fields: level, depth, unit, lat Task: Retrieve lon from wind_speed with reading above the MAX(reading) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010617
train
v1
Sensor network script: Node: turbidity | code: ref | fields: depth, type, ts, lat Sensor: evaporation | fields: lon, lat, reading, ts Task: Fetch lat from turbidity where depth exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010618
train
v2
Sensor network script: Node: sunlight | code: gst | fields: qc, type, reading, value Sensor: uv_index | fields: level, lon, reading, qc Task: Retrieve level from sunlight that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "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_010619
train
v1
Sensor network script: Node: evaporation | code: ref | fields: ts, reading, lat, level Sensor: sunlight | fields: reading, level, type, ts Task: Fetch lat from evaporation where ts exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010620
train
v2
Sensor network script: Node: pressure | code: mst | fields: lon, depth, lat, reading Sensor: frost | fields: qc, unit, depth, value Task: Retrieve reading from pressure that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010621
train
v2
Sensor network script: Node: turbidity | code: gst | fields: depth, level, qc, ts Sensor: uv_index | fields: lon, depth, value, qc Task: Fetch lon from turbidity that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010622
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lon, reading, lat, level Sensor: humidity | fields: reading, value, depth, lon Task: Retrieve lon from uv_index whose ts is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010623
train
v2
Sensor network script: Node: air_quality | code: gst | fields: level, value, type, reading Sensor: rainfall | fields: value, lon, lat, type Task: Fetch reading from air_quality that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010624
train
v3
Sensor network script: Node: temperature | code: stn | fields: level, value, lat, type Sensor: dew_point | fields: qc, lat, lon, depth Task: Fetch depth from temperature where depth is greater than the minimum of value in dew_point for matching ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010625
train
v1
Sensor network script: Node: air_quality | code: gst | fields: value, lon, qc, lat Sensor: soil_moisture | fields: depth, value, qc, ts Task: Get value from air_quality where depth appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010626
train
v1
Sensor network script: Node: visibility | code: hub | fields: type, reading, ts, value Sensor: air_quality | fields: value, reading, depth, lon Task: Fetch level from visibility where depth exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010627
train
v3
Sensor network script: Node: evaporation | code: clr | fields: lat, unit, level, depth Sensor: drought_index | fields: depth, type, level, reading Task: Retrieve depth from evaporation with depth above the SUM(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010628
train
v3
Sensor network script: Node: humidity | code: prt | fields: depth, lon, qc, lat Sensor: uv_index | fields: ts, reading, lon, lat Task: Retrieve reading from humidity with reading above the MAX(reading) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010629
train
v3
Sensor network script: Node: sunlight | code: thr | fields: reading, qc, value, unit Sensor: snow_depth | fields: lat, unit, qc, lon Task: Fetch lat from sunlight where value is greater than the maximum of value in snow_depth for matching unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010630
train
v2
Sensor network script: Node: air_quality | code: stn | fields: depth, type, value, lat Sensor: frost | fields: value, level, lon, depth Task: Retrieve depth from air_quality that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010631
train
v3
Sensor network script: Node: frost | code: hub | fields: lon, value, ts, type Sensor: pressure | fields: qc, depth, level, unit Task: Get reading from frost where reading exceeds the maximum depth from pressure for the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010632
train
v1
Sensor network script: Node: sunlight | code: mst | fields: qc, unit, reading, depth Sensor: turbidity | fields: ts, reading, depth, type Task: Retrieve lon from sunlight whose qc is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010633
train
v1
Sensor network script: Node: lightning | code: ref | fields: lat, qc, depth, ts Sensor: temperature | fields: lat, value, type, reading Task: Get level from lightning where ts appears in temperature readings with matching type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010634
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: reading, qc, lon, ts Sensor: dew_point | fields: value, unit, ts, lat Task: Retrieve lat from soil_moisture with value above the COUNT(value) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010635
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lon, lat, qc, ts Sensor: rainfall | fields: reading, value, ts, unit Task: Retrieve lon from soil_moisture whose unit is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010636
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: depth, ts, type, qc Sensor: soil_moisture | fields: type, ts, reading, level Task: Retrieve lon from snow_depth that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010637
train
v3
Sensor network script: Node: air_quality | code: thr | fields: ts, type, qc, level Sensor: visibility | fields: unit, ts, value, level Task: Get value from air_quality where reading exceeds the average value from visibility for the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010638
train
v1
Sensor network script: Node: lightning | code: mst | fields: value, lon, lat, qc Sensor: sunlight | fields: value, lon, type, reading Task: Fetch level from lightning where ts exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010639
train
v3
Sensor network script: Node: turbidity | code: clr | fields: reading, unit, lat, level Sensor: drought_index | fields: level, ts, type, reading Task: Get lon from turbidity where value exceeds the minimum depth from drought_index for the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010640
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: ts, reading, qc, value Sensor: uv_index | fields: value, unit, level, lon Task: Retrieve value from soil_moisture that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010641
train
v2
Sensor network script: Node: lightning | code: clr | fields: level, ts, lon, lat Sensor: sunlight | fields: qc, reading, level, lon Task: Retrieve level from lightning that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010642
train
v2
Sensor network script: Node: frost | code: hub | fields: ts, type, qc, lon Sensor: uv_index | fields: unit, ts, value, type Task: Retrieve lon from frost that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010643
train
v2
Sensor network script: Node: air_quality | code: mst | fields: value, unit, lon, level Sensor: temperature | fields: qc, lon, value, type Task: Retrieve value from air_quality that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010644
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, lon, level, type Sensor: pressure | fields: level, type, value, depth Task: Fetch lat from rainfall where reading is greater than the maximum of value in pressure for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010645
train
v2
Sensor network script: Node: uv_index | code: prt | fields: value, type, ts, lat Sensor: evaporation | fields: qc, type, reading, unit Task: Retrieve lon from uv_index that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010646
train
v1
Sensor network script: Node: visibility | code: gst | fields: depth, lat, type, ts Sensor: rainfall | fields: reading, unit, qc, value Task: Fetch reading from visibility where ts exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010647
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: depth, lat, value, type Sensor: temperature | fields: unit, value, depth, type Task: Get reading from wind_speed where qc appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010648
train
v1
Sensor network script: Node: frost | code: mst | fields: depth, reading, unit, qc Sensor: visibility | fields: level, depth, lon, lat Task: Fetch reading from frost where depth exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010649
train
v2
Sensor network script: Node: humidity | code: gst | fields: value, reading, level, qc Sensor: evaporation | fields: qc, lat, depth, type Task: Retrieve value from humidity that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010650
train
v3
Sensor network script: Node: frost | code: prt | fields: level, qc, type, depth Sensor: visibility | fields: type, ts, level, reading Task: Retrieve reading from frost with depth above the SUM(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010651
train
v1
Sensor network script: Node: turbidity | code: thr | fields: depth, ts, value, lon Sensor: sunlight | fields: lon, reading, lat, level Task: Fetch lon from turbidity where type exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010652
train
v3
Sensor network script: Node: drought_index | code: hub | fields: value, level, unit, type Sensor: wind_speed | fields: reading, type, depth, level Task: Fetch reading from drought_index where reading is greater than the minimum of reading in wind_speed for matching depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010653
train
v3
Sensor network script: Node: lightning | code: ref | fields: level, type, value, ts Sensor: uv_index | fields: lat, depth, qc, reading Task: Fetch lat from lightning where value is greater than the count of of value in uv_index for matching type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010654
train
v3
Sensor network script: Node: visibility | code: clr | fields: reading, qc, level, lat Sensor: pressure | fields: value, lat, level, lon Task: Fetch value from visibility where depth is greater than the maximum of value in pressure for matching type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010655
train
v3
Sensor network script: Node: lightning | code: ref | fields: lat, qc, value, level Sensor: cloud_cover | fields: reading, unit, ts, level Task: Retrieve lat from lightning with value above the MAX(value) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010656
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: depth, type, unit, value Sensor: soil_moisture | fields: type, ts, unit, lat Task: Fetch reading from cloud_cover that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010657
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: ts, lat, type, qc Sensor: uv_index | fields: lat, depth, qc, unit Task: Get lat from soil_moisture where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010658
train
v1
Sensor network script: Node: temperature | code: stn | fields: qc, lat, value, lon Sensor: uv_index | fields: lat, type, depth, reading Task: Retrieve depth from temperature whose type is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010659
train
v3
Sensor network script: Node: dew_point | code: gst | fields: reading, lon, ts, lat Sensor: sunlight | fields: lon, reading, unit, ts Task: Fetch depth from dew_point where depth is greater than the minimum of depth in sunlight for matching type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010660
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: lon, reading, value, level Sensor: sunlight | fields: depth, level, type, lat Task: Retrieve depth from snow_depth whose depth is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010661
train
v3
Sensor network script: Node: evaporation | code: mst | fields: unit, depth, lon, type Sensor: uv_index | fields: lat, ts, reading, qc Task: Retrieve depth from evaporation with depth above the COUNT(reading) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010662
train
v3
Sensor network script: Node: lightning | code: thr | fields: depth, lon, value, lat Sensor: cloud_cover | fields: lat, level, depth, lon Task: Fetch level from lightning where depth is greater than the average of reading in cloud_cover for matching qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010663
train
v2
Sensor network script: Node: humidity | code: clr | fields: value, lon, qc, lat Sensor: rainfall | fields: level, type, ts, reading Task: Retrieve depth from humidity that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010664
train
v3
Sensor network script: Node: turbidity | code: hub | fields: ts, lon, lat, type Sensor: visibility | fields: ts, depth, qc, value Task: Get lat from turbidity where reading exceeds the average reading from visibility for the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010665
train
v1
Sensor network script: Node: drought_index | code: gst | fields: type, lon, unit, qc Sensor: uv_index | fields: ts, value, type, reading Task: Fetch depth from drought_index where qc exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010666
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: ts, depth, lon, type Sensor: wind_speed | fields: lat, reading, lon, depth Task: Retrieve reading from snow_depth that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010667
train
v2
Sensor network script: Node: frost | code: gst | fields: ts, type, value, reading Sensor: evaporation | fields: ts, qc, depth, lon Task: Get value from frost where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010668
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: ts, type, value, lat Sensor: soil_moisture | fields: ts, depth, type, unit Task: Retrieve lon from cloud_cover whose depth is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010669
train
v3
Sensor network script: Node: turbidity | code: ref | fields: value, type, lat, qc Sensor: wind_speed | fields: lon, level, value, unit Task: Get lat from turbidity where depth exceeds the total depth from wind_speed for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010670
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lon, ts, unit, depth Sensor: drought_index | fields: value, ts, lon, type Task: Retrieve lon from sunlight with reading above the COUNT(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010671
train
v3
Sensor network script: Node: visibility | code: clr | fields: level, depth, lon, qc Sensor: temperature | fields: level, type, lat, lon Task: Retrieve lat from visibility with reading above the AVG(value) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010672
train
v2
Sensor network script: Node: frost | code: prt | fields: unit, type, qc, level Sensor: soil_moisture | fields: reading, lon, level, depth Task: Get reading from frost where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010673
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: lat, reading, lon, value Sensor: snow_depth | fields: qc, type, lon, unit Task: Get value from cloud_cover where depth exceeds the total depth from snow_depth for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010674
train
v1
Sensor network script: Node: air_quality | code: clr | fields: lat, ts, qc, value Sensor: evaporation | fields: reading, unit, lat, qc Task: Retrieve value from air_quality whose qc is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010675
train
v3
Sensor network script: Node: humidity | code: clr | fields: lon, type, lat, reading Sensor: snow_depth | fields: level, ts, value, unit Task: Fetch reading from humidity where reading is greater than the minimum of depth in snow_depth for matching depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010676
train
v3
Sensor network script: Node: visibility | code: gst | fields: ts, unit, value, lon Sensor: lightning | fields: depth, level, value, reading Task: Fetch lon from visibility where depth is greater than the minimum of value in lightning for matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010677
train
v2
Sensor network script: Node: temperature | code: prt | fields: depth, value, qc, lon Sensor: dew_point | fields: level, ts, qc, type Task: Fetch reading from temperature that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010678
train
v3
Sensor network script: Node: rainfall | code: thr | fields: depth, qc, lat, lon Sensor: frost | fields: lon, ts, type, qc Task: Retrieve reading from rainfall with reading above the MIN(value) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010679
train
v2
Sensor network script: Node: uv_index | code: gst | fields: depth, ts, qc, lon Sensor: frost | fields: lon, ts, unit, value Task: Fetch value from uv_index that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010680
train
v3
Sensor network script: Node: sunlight | code: clr | fields: depth, value, level, reading Sensor: wind_speed | fields: reading, level, lat, unit Task: Retrieve lat from sunlight with value above the COUNT(value) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010681
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: qc, level, reading, ts Sensor: turbidity | fields: depth, ts, value, lon Task: Fetch reading from cloud_cover where depth is greater than the total of reading in turbidity for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010682
train
v2
Sensor network script: Node: uv_index | code: mst | fields: unit, value, lat, qc Sensor: rainfall | fields: unit, value, lat, type Task: Fetch reading from uv_index that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010683
train
v2
Sensor network script: Node: humidity | code: clr | fields: lon, type, qc, value Sensor: temperature | fields: level, type, lon, lat Task: Retrieve value from humidity that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010684
train
v2
Sensor network script: Node: rainfall | code: gst | fields: unit, type, reading, level Sensor: pressure | fields: value, depth, lat, unit Task: Retrieve depth from rainfall that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010685
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: qc, ts, lon, reading Sensor: humidity | fields: reading, lat, ts, depth Task: Fetch level from snow_depth where depth exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010686
train
v3
Sensor network script: Node: uv_index | code: gst | fields: value, qc, reading, lat Sensor: soil_moisture | fields: value, level, lat, reading Task: Get lon from uv_index where reading exceeds the minimum value from soil_moisture for the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010687
train
v3
Sensor network script: Node: evaporation | code: clr | fields: reading, unit, qc, depth Sensor: drought_index | fields: depth, type, value, unit Task: Get depth from evaporation where reading exceeds the average reading from drought_index for the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010688
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: depth, ts, type, lat Sensor: frost | fields: lat, ts, reading, depth Task: Fetch level from snow_depth where reading is greater than the count of of depth in frost for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010689
train
v2
Sensor network script: Node: visibility | code: mst | fields: type, lon, depth, qc Sensor: snow_depth | fields: ts, reading, lat, level Task: Fetch value from visibility that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010690
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: value, qc, depth, ts Sensor: lightning | fields: lon, type, value, reading Task: Get level from wind_speed where type appears in lightning readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010691
train
v1
Sensor network script: Node: frost | code: gst | fields: unit, value, qc, depth Sensor: rainfall | fields: lat, lon, type, value Task: Get lon from frost where ts appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010692
train
v1
Sensor network script: Node: visibility | code: prt | fields: qc, lon, type, value Sensor: dew_point | fields: lon, depth, unit, reading Task: Retrieve level from visibility whose ts is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010693
train
v1
Sensor network script: Node: pressure | code: ref | fields: reading, ts, lon, level Sensor: uv_index | fields: lon, reading, qc, value Task: Fetch reading from pressure where ts exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010694
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: ts, unit, depth, type Sensor: visibility | fields: level, lat, qc, value Task: Fetch lat from snow_depth that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_010695
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: ts, depth, level, unit Sensor: sunlight | fields: depth, reading, unit, type Task: Get depth from soil_moisture where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010696
train
v1
Sensor network script: Node: lightning | code: clr | fields: level, reading, lon, value Sensor: frost | fields: lon, depth, level, type Task: Get lon from lightning where depth appears in frost readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010697
train
v3
Sensor network script: Node: evaporation | code: mst | fields: qc, lon, type, level Sensor: uv_index | fields: value, qc, ts, type Task: Get value from evaporation where depth exceeds the count of reading from uv_index for the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010698
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: reading, lon, type, ts Sensor: lightning | fields: type, lat, unit, value Task: Fetch depth from snow_depth where ts exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_010699
train