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: humidity | code: mst | fields: level, depth, lat, reading Sensor: air_quality | fields: lon, reading, depth, level Task: Get lat from humidity where value exceeds the maximum depth from air_quality for the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066100
train
v3
Sensor network script: Node: humidity | code: prt | fields: type, unit, reading, ts Sensor: frost | fields: depth, unit, lat, ts Task: Fetch depth from humidity where reading is greater than the total of reading in frost for matching type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066101
train
v3
Sensor network script: Node: temperature | code: ref | fields: lat, unit, lon, type Sensor: drought_index | fields: level, lon, unit, value Task: Fetch value from temperature where reading is greater than the total of value in drought_index for matching depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066102
train
v1
Sensor network script: Node: lightning | code: hub | fields: type, depth, qc, level Sensor: wind_speed | fields: level, ts, reading, value Task: Retrieve reading from lightning whose ts is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066103
train
v2
Sensor network script: Node: rainfall | code: prt | fields: type, qc, level, unit Sensor: humidity | fields: depth, value, type, level Task: Get reading from rainfall where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066104
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: reading, lat, value, qc Sensor: air_quality | fields: value, level, reading, lon Task: Get lon from cloud_cover where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066105
train
v3
Sensor network script: Node: humidity | code: gst | fields: level, ts, type, unit Sensor: frost | fields: qc, ts, type, lon Task: Fetch level from humidity where reading is greater than the total of value in frost for matching type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066106
train
v2
Sensor network script: Node: uv_index | code: hub | fields: qc, unit, type, ts Sensor: lightning | fields: qc, lat, ts, type Task: Retrieve depth from uv_index that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066107
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: lon, value, type, qc Sensor: cloud_cover | fields: lon, level, type, lat Task: Get value from soil_moisture where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066108
train
v1
Sensor network script: Node: temperature | code: mst | fields: ts, qc, depth, type Sensor: visibility | fields: unit, level, ts, lat Task: Get reading from temperature where type appears in visibility readings with matching type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066109
train
v3
Sensor network script: Node: pressure | code: hub | fields: ts, level, type, lon Sensor: temperature | fields: qc, ts, value, type Task: Get reading from pressure where depth exceeds the count of depth from temperature for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066110
train
v1
Sensor network script: Node: evaporation | code: ref | fields: qc, unit, depth, lon Sensor: rainfall | fields: unit, lat, lon, reading Task: Get level from evaporation where unit appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066111
train
v1
Sensor network script: Node: lightning | code: thr | fields: value, level, lon, type Sensor: visibility | fields: lon, type, reading, value Task: Get lon from lightning where type appears in visibility readings with matching type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066112
train
v2
Sensor network script: Node: evaporation | code: mst | fields: unit, lon, level, ts Sensor: frost | fields: lon, reading, lat, depth Task: Get level from evaporation where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066113
train
v1
Sensor network script: Node: drought_index | code: stn | fields: depth, qc, type, unit Sensor: evaporation | fields: type, level, unit, value Task: Get level from drought_index where type appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066114
train
v3
Sensor network script: Node: dew_point | code: ref | fields: lat, level, qc, value Sensor: air_quality | fields: unit, lon, type, level Task: Retrieve lat from dew_point with depth above the MIN(value) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066115
train
v2
Sensor network script: Node: frost | code: mst | fields: ts, qc, reading, lat Sensor: lightning | fields: reading, value, lat, qc Task: Get lon from frost where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066116
train
v1
Sensor network script: Node: frost | code: ref | fields: type, lon, ts, depth Sensor: wind_speed | fields: value, lat, depth, lon Task: Retrieve value from frost whose depth is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066117
train
v1
Sensor network script: Node: drought_index | code: gst | fields: unit, lon, ts, lat Sensor: turbidity | fields: reading, lat, ts, depth Task: Get lat from drought_index where qc appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066118
train
v2
Sensor network script: Node: humidity | code: stn | fields: qc, lat, level, ts Sensor: rainfall | fields: ts, reading, level, qc Task: Retrieve reading from humidity that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066119
train
v2
Sensor network script: Node: frost | code: gst | fields: unit, lat, depth, type Sensor: drought_index | fields: lat, qc, unit, ts Task: Get depth from frost where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066120
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lat, depth, qc, lon Sensor: air_quality | fields: unit, depth, qc, lat Task: Get lat from drought_index where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066121
train
v3
Sensor network script: Node: humidity | code: clr | fields: reading, level, ts, value Sensor: sunlight | fields: lon, reading, qc, depth Task: Fetch value from humidity where value is greater than the total of reading in sunlight for matching unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066122
train
v1
Sensor network script: Node: drought_index | code: thr | fields: depth, ts, type, unit Sensor: dew_point | fields: depth, type, lat, lon Task: Fetch reading from drought_index where type exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066123
train
v2
Sensor network script: Node: uv_index | code: ref | fields: level, ts, reading, lon Sensor: lightning | fields: level, qc, ts, unit Task: Fetch value from uv_index that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "uv_index", "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_066124
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: depth, ts, lat, value Sensor: air_quality | fields: qc, value, type, reading Task: Retrieve reading from soil_moisture with value above the SUM(reading) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066125
train
v2
Sensor network script: Node: lightning | code: clr | fields: value, unit, lat, depth Sensor: soil_moisture | fields: qc, ts, value, type Task: Get lat from lightning where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066126
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lat, type, value, unit Sensor: dew_point | fields: value, reading, level, type Task: Get reading from wind_speed where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066127
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: lon, qc, reading, type Sensor: turbidity | fields: ts, value, lat, qc Task: Fetch value from cloud_cover that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066128
train
v3
Sensor network script: Node: sunlight | code: prt | fields: value, depth, lon, lat Sensor: humidity | fields: reading, unit, ts, lat Task: Get reading from sunlight where value exceeds the maximum value from humidity for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066129
train
v1
Sensor network script: Node: temperature | code: clr | fields: value, type, level, qc Sensor: wind_speed | fields: value, unit, reading, depth Task: Retrieve level from temperature whose depth is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066130
train
v2
Sensor network script: Node: rainfall | code: stn | fields: lon, value, unit, qc Sensor: turbidity | fields: reading, unit, lon, qc Task: Get lat from rainfall where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066131
train
v1
Sensor network script: Node: evaporation | code: prt | fields: lon, value, type, ts Sensor: drought_index | fields: qc, ts, reading, unit Task: Retrieve lon from evaporation whose depth is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066132
train
v2
Sensor network script: Node: uv_index | code: clr | fields: qc, reading, type, unit Sensor: wind_speed | fields: lon, lat, qc, depth Task: Fetch value from uv_index that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066133
train
v3
Sensor network script: Node: pressure | code: hub | fields: type, ts, unit, depth Sensor: uv_index | fields: qc, ts, type, lon Task: Fetch lon from pressure where depth is greater than the total of reading in uv_index for matching qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066134
train
v1
Sensor network script: Node: air_quality | code: thr | fields: reading, value, depth, unit Sensor: visibility | fields: value, reading, qc, level Task: Get lat from air_quality where qc appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066135
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: lon, unit, lat, value Sensor: uv_index | fields: lat, ts, unit, value Task: Retrieve value from soil_moisture that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066136
train
v1
Sensor network script: Node: pressure | code: hub | fields: ts, lat, type, value Sensor: frost | fields: lat, value, unit, lon Task: Fetch depth from pressure where type exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066137
train
v2
Sensor network script: Node: rainfall | code: prt | fields: unit, type, lon, ts Sensor: turbidity | fields: level, unit, type, qc Task: Retrieve depth from rainfall that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066138
train
v1
Sensor network script: Node: temperature | code: mst | fields: ts, lat, unit, depth Sensor: sunlight | fields: ts, value, unit, reading Task: Retrieve level from temperature whose unit is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066139
train
v3
Sensor network script: Node: humidity | code: stn | fields: value, level, unit, depth Sensor: visibility | fields: lon, type, level, value Task: Get level from humidity where value exceeds the total reading from visibility for the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066140
train
v3
Sensor network script: Node: turbidity | code: thr | fields: type, qc, value, lat Sensor: uv_index | fields: level, type, value, lat Task: Fetch lat from turbidity where reading is greater than the count of of depth in uv_index for matching ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066141
train
v2
Sensor network script: Node: turbidity | code: gst | fields: value, level, depth, reading Sensor: snow_depth | fields: lat, value, depth, lon Task: Fetch lon from turbidity that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066142
train
v1
Sensor network script: Node: frost | code: clr | fields: lat, depth, ts, reading Sensor: sunlight | fields: ts, lat, reading, level Task: Get lat from frost where unit appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066143
train
v3
Sensor network script: Node: pressure | code: prt | fields: depth, lat, qc, unit Sensor: soil_moisture | fields: unit, lon, level, depth Task: Get lon from pressure where value exceeds the count of reading from soil_moisture for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066144
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lat, type, unit, value Sensor: rainfall | fields: reading, unit, depth, type Task: Retrieve lon from soil_moisture with value above the COUNT(depth) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066145
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: lon, type, ts, unit Sensor: dew_point | fields: depth, reading, ts, qc Task: Fetch lat from soil_moisture where reading is greater than the total of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066146
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lon, reading, unit, lat Sensor: sunlight | fields: type, level, unit, value Task: Fetch value from soil_moisture where reading is greater than the count of of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066147
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: ts, level, qc, value Sensor: lightning | fields: level, reading, qc, lat Task: Fetch value from cloud_cover that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066148
train
v3
Sensor network script: Node: evaporation | code: mst | fields: reading, level, ts, unit Sensor: cloud_cover | fields: depth, lon, lat, level Task: Retrieve value from evaporation with reading above the MIN(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066149
train
v2
Sensor network script: Node: dew_point | code: stn | fields: type, unit, qc, lat Sensor: frost | fields: ts, unit, depth, reading Task: Fetch level from dew_point that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066150
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: value, qc, unit, type Sensor: evaporation | fields: type, qc, ts, lon Task: Retrieve depth from wind_speed that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066151
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: value, lon, ts, qc Sensor: wind_speed | fields: qc, value, lat, level Task: Get lon from soil_moisture where depth exceeds the count of value from wind_speed for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066152
train
v3
Sensor network script: Node: dew_point | code: mst | fields: value, unit, lat, level Sensor: turbidity | fields: unit, reading, qc, lat Task: Fetch reading from dew_point where value is greater than the total of reading in turbidity for matching depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066153
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: qc, level, depth, lon Sensor: dew_point | fields: unit, qc, depth, reading Task: Get lon from cloud_cover where depth exceeds the count of depth from dew_point for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066154
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: reading, type, value, unit Sensor: evaporation | fields: unit, lat, value, qc Task: Fetch reading from snow_depth where unit exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066155
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lat, qc, reading, level Sensor: frost | fields: lat, type, unit, ts Task: Retrieve level from dew_point that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066156
train
v3
Sensor network script: Node: evaporation | code: hub | fields: lat, value, type, ts Sensor: snow_depth | fields: type, value, reading, level Task: Retrieve lat from evaporation with value above the COUNT(depth) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066157
train
v2
Sensor network script: Node: air_quality | code: mst | fields: ts, qc, unit, value Sensor: dew_point | fields: reading, unit, ts, level Task: Retrieve lat from air_quality that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( 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", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066158
train
v1
Sensor network script: Node: air_quality | code: mst | fields: reading, lat, value, unit Sensor: lightning | fields: level, ts, qc, unit Task: Get level from air_quality where qc appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066159
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: depth, qc, value, level Sensor: temperature | fields: ts, lon, level, value Task: Fetch depth from cloud_cover that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066160
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lon, lat, ts, depth Sensor: lightning | fields: depth, qc, type, unit Task: Fetch level from sunlight where value is greater than the average of value in lightning for matching ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066161
train
v2
Sensor network script: Node: uv_index | code: clr | fields: type, unit, ts, qc Sensor: wind_speed | fields: qc, lon, depth, ts Task: Fetch level from uv_index that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066162
train
v3
Sensor network script: Node: temperature | code: ref | fields: type, reading, ts, lon Sensor: lightning | fields: unit, level, ts, reading Task: Get value from temperature where reading exceeds the count of reading from lightning for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066163
train
v1
Sensor network script: Node: drought_index | code: clr | fields: value, ts, reading, lat Sensor: turbidity | fields: depth, unit, lon, type Task: Get level from drought_index where ts appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066164
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: depth, ts, value, unit Sensor: sunlight | fields: level, lat, value, type Task: Retrieve lat from wind_speed with value above the MAX(reading) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066165
train
v1
Sensor network script: Node: humidity | code: hub | fields: value, reading, type, ts Sensor: soil_moisture | fields: ts, value, qc, lat Task: Retrieve level from humidity whose ts is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066166
train
v1
Sensor network script: Node: evaporation | code: ref | fields: qc, lon, depth, level Sensor: temperature | fields: qc, unit, value, lon Task: Fetch value from evaporation where depth exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066167
train
v2
Sensor network script: Node: frost | code: hub | fields: level, type, lat, unit Sensor: uv_index | fields: level, ts, lon, type Task: Get depth from frost where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066168
train
v1
Sensor network script: Node: uv_index | code: hub | fields: lon, qc, level, lat Sensor: sunlight | fields: lat, value, unit, type Task: Get value from uv_index where ts appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066169
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: level, unit, ts, reading Sensor: pressure | fields: level, reading, qc, type Task: Get reading from snow_depth where value exceeds the average value from pressure for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066170
train
v2
Sensor network script: Node: evaporation | code: gst | fields: lat, type, value, unit Sensor: cloud_cover | fields: value, reading, ts, depth Task: Get reading from evaporation where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066171
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, level, qc, ts Sensor: turbidity | fields: lat, ts, lon, reading Task: Get reading from drought_index where reading exceeds the count of value from turbidity for the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066172
train
v3
Sensor network script: Node: rainfall | code: stn | fields: reading, unit, depth, type Sensor: sunlight | fields: ts, value, lon, depth Task: Retrieve value from rainfall with depth above the AVG(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066173
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: value, qc, type, reading Sensor: visibility | fields: level, value, reading, lat Task: Retrieve value from wind_speed that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066174
train
v1
Sensor network script: Node: drought_index | code: thr | fields: lon, depth, type, reading Sensor: uv_index | fields: level, qc, value, depth Task: Fetch depth from drought_index where depth exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066175
train
v2
Sensor network script: Node: evaporation | code: prt | fields: ts, value, lat, reading Sensor: soil_moisture | fields: reading, value, qc, unit Task: Get depth from evaporation where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066176
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: level, lon, reading, type Sensor: drought_index | fields: type, unit, level, ts Task: Retrieve level from soil_moisture with value above the SUM(value) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066177
train
v1
Sensor network script: Node: humidity | code: mst | fields: value, reading, type, depth Sensor: lightning | fields: unit, ts, reading, value Task: Retrieve level from humidity whose depth is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066178
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lat, level, depth, qc Sensor: dew_point | fields: ts, unit, level, reading Task: Retrieve level from sunlight with depth above the MIN(reading) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066179
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, type, level, lat Sensor: frost | fields: ts, lat, level, qc Task: Get level from visibility where ts appears in frost readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066180
train
v2
Sensor network script: Node: sunlight | code: ref | fields: value, lat, type, qc Sensor: air_quality | fields: type, level, value, lon Task: Get depth from sunlight where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066181
train
v1
Sensor network script: Node: uv_index | code: gst | fields: depth, ts, reading, qc Sensor: turbidity | fields: type, ts, lat, value Task: Get lat from uv_index where qc appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066182
train
v3
Sensor network script: Node: turbidity | code: thr | fields: level, value, ts, type Sensor: wind_speed | fields: reading, depth, ts, type Task: Retrieve value from turbidity with depth above the SUM(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066183
train
v2
Sensor network script: Node: pressure | code: mst | fields: level, depth, ts, unit Sensor: rainfall | fields: type, lat, level, lon Task: Retrieve lon from pressure that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066184
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: lon, unit, type, qc Sensor: wind_speed | fields: lon, reading, ts, qc Task: Get reading from snow_depth where depth exceeds the average value from wind_speed for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066185
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: lon, lat, level, reading Sensor: drought_index | fields: depth, lon, level, value Task: Get reading from snow_depth where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066186
train
v3
Sensor network script: Node: drought_index | code: mst | fields: type, lat, lon, value Sensor: snow_depth | fields: level, ts, reading, type Task: Get lat from drought_index where value exceeds the count of depth from snow_depth for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066187
train
v2
Sensor network script: Node: pressure | code: clr | fields: depth, ts, unit, value Sensor: soil_moisture | fields: unit, type, level, lat Task: Fetch lon from pressure that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066188
train
v2
Sensor network script: Node: lightning | code: stn | fields: value, type, qc, unit Sensor: snow_depth | fields: lat, type, reading, unit Task: Get lon from lightning where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066189
train
v2
Sensor network script: Node: humidity | code: clr | fields: qc, unit, depth, ts Sensor: rainfall | fields: level, value, lat, depth Task: Fetch value from humidity that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066190
train
v1
Sensor network script: Node: humidity | code: mst | fields: value, unit, ts, level Sensor: evaporation | fields: depth, ts, level, value Task: Fetch level from humidity where depth exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066191
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: type, ts, level, unit Sensor: lightning | fields: reading, type, level, unit Task: Get lat from cloud_cover where unit appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066192
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: value, level, ts, lat Sensor: lightning | fields: reading, value, lon, level Task: Retrieve lat from wind_speed whose ts is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066193
train
v2
Sensor network script: Node: lightning | code: stn | fields: depth, level, qc, value Sensor: wind_speed | fields: ts, level, type, depth Task: Fetch lon from lightning that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066194
train
v2
Sensor network script: Node: air_quality | code: gst | fields: depth, lon, unit, value Sensor: snow_depth | fields: value, lat, ts, unit Task: Fetch value from air_quality that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066195
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lat, depth, value, type Sensor: visibility | fields: value, unit, qc, depth Task: Retrieve level from rainfall with reading above the COUNT(value) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066196
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: lat, level, unit, value Sensor: temperature | fields: level, value, type, lon Task: Get level from wind_speed where value exceeds the count of reading from temperature for the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066197
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lat, ts, value, lon Sensor: rainfall | fields: type, ts, qc, unit Task: Get value from dew_point where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_066198
train
v1
Sensor network script: Node: uv_index | code: stn | fields: lon, type, value, unit Sensor: air_quality | fields: type, unit, level, ts Task: Retrieve level from uv_index whose unit is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_066199
train