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: frost | code: clr | fields: type, unit, level, qc Sensor: sunlight | fields: type, value, ts, reading Task: Retrieve reading from frost with depth above the MAX(reading) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020200
train
v1
Sensor network script: Node: uv_index | code: clr | fields: type, reading, lon, value Sensor: rainfall | fields: level, depth, qc, lat Task: Retrieve depth from uv_index whose qc is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020201
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: type, unit, lat, depth Sensor: cloud_cover | fields: qc, value, level, type Task: Retrieve lon from snow_depth whose ts is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020202
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lat, type, depth, lon Sensor: evaporation | fields: ts, reading, depth, level Task: Fetch reading from uv_index where depth is greater than the minimum of reading in evaporation for matching qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020203
train
v1
Sensor network script: Node: lightning | code: stn | fields: type, level, reading, ts Sensor: pressure | fields: qc, level, depth, lat Task: Get level from lightning where depth appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020204
train
v1
Sensor network script: Node: evaporation | code: stn | fields: ts, value, depth, lon Sensor: dew_point | fields: qc, value, unit, lon Task: Fetch level from evaporation where type exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020205
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: value, qc, lat, unit Sensor: humidity | fields: reading, ts, qc, lat Task: Retrieve depth from soil_moisture that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020206
train
v1
Sensor network script: Node: lightning | code: stn | fields: lat, level, reading, qc Sensor: frost | fields: reading, unit, ts, lat Task: Fetch value from lightning where type exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020207
train
v2
Sensor network script: Node: sunlight | code: hub | fields: depth, level, unit, reading Sensor: temperature | fields: lon, depth, type, lat Task: Get value from sunlight where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020208
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: ts, type, lon, depth Sensor: snow_depth | fields: value, unit, reading, level Task: Retrieve lon from wind_speed with depth above the SUM(depth) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020209
train
v3
Sensor network script: Node: pressure | code: thr | fields: lon, unit, reading, type Sensor: frost | fields: type, lat, value, level Task: Get reading from pressure where value exceeds the minimum value from frost for the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020210
train
v3
Sensor network script: Node: uv_index | code: clr | fields: lat, lon, unit, qc Sensor: temperature | fields: depth, type, value, lat Task: Fetch lat from uv_index where depth is greater than the count of of reading in temperature for matching qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020211
train
v3
Sensor network script: Node: uv_index | code: ref | fields: value, lon, qc, ts Sensor: sunlight | fields: lon, lat, depth, value Task: Get reading from uv_index where reading exceeds the maximum reading from sunlight for the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020212
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: level, qc, value, lon Sensor: frost | fields: lat, level, type, value Task: Get reading from soil_moisture where qc appears in frost readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020213
train
v2
Sensor network script: Node: pressure | code: thr | fields: qc, lon, depth, level Sensor: air_quality | fields: depth, reading, type, value Task: Get level from pressure where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020214
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: type, ts, reading, qc Sensor: evaporation | fields: ts, reading, unit, type Task: Get reading from snow_depth where value exceeds the count of value from evaporation for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020215
train
v2
Sensor network script: Node: rainfall | code: thr | fields: value, lat, type, depth Sensor: pressure | fields: ts, qc, level, type Task: Fetch value from rainfall that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020216
train
v2
Sensor network script: Node: lightning | code: stn | fields: unit, level, qc, lon Sensor: cloud_cover | fields: type, lon, ts, reading Task: Get lat from lightning where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020217
train
v1
Sensor network script: Node: drought_index | code: hub | fields: type, value, reading, unit Sensor: dew_point | fields: unit, depth, value, type Task: Fetch level from drought_index where unit exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020218
train
v3
Sensor network script: Node: visibility | code: mst | fields: level, ts, reading, unit Sensor: drought_index | fields: unit, type, lat, ts Task: Retrieve value from visibility with value above the AVG(value) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "value", "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_020219
train
v1
Sensor network script: Node: frost | code: thr | fields: unit, value, lat, depth Sensor: dew_point | fields: qc, lon, depth, type Task: Retrieve lat from frost whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020220
train
v2
Sensor network script: Node: dew_point | code: stn | fields: level, unit, value, reading Sensor: temperature | fields: depth, type, unit, lat Task: Retrieve value from dew_point that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020221
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: qc, unit, lon, depth Sensor: rainfall | fields: qc, lat, depth, lon Task: Get depth from wind_speed where type appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020222
train
v2
Sensor network script: Node: visibility | code: thr | fields: reading, value, unit, qc Sensor: dew_point | fields: lon, qc, lat, reading Task: Retrieve level from visibility that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020223
train
v3
Sensor network script: Node: pressure | code: ref | fields: lat, level, value, unit Sensor: sunlight | fields: ts, reading, lon, type Task: Fetch value from pressure where reading is greater than the average of reading in sunlight for matching depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020224
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, lon, type, lat Sensor: soil_moisture | fields: lat, unit, depth, reading Task: Retrieve reading from uv_index with reading above the COUNT(value) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020225
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: reading, value, level, type Sensor: frost | fields: reading, lat, type, unit Task: Retrieve depth from cloud_cover with value above the MIN(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020226
train
v3
Sensor network script: Node: air_quality | code: hub | fields: unit, reading, lat, ts Sensor: visibility | fields: ts, level, qc, depth Task: Fetch level from air_quality where reading is greater than the maximum of reading in visibility for matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020227
train
v2
Sensor network script: Node: lightning | code: ref | fields: lon, type, lat, level Sensor: air_quality | fields: level, unit, type, lon Task: Get level from lightning where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020228
train
v2
Sensor network script: Node: sunlight | code: hub | fields: level, depth, lat, reading Sensor: turbidity | fields: unit, lon, level, reading Task: Retrieve lat from sunlight that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020229
train
v2
Sensor network script: Node: lightning | code: mst | fields: reading, type, qc, level Sensor: sunlight | fields: type, reading, lon, qc Task: Fetch level from lightning that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020230
train
v1
Sensor network script: Node: dew_point | code: mst | fields: qc, ts, lon, depth Sensor: uv_index | fields: reading, lat, qc, unit Task: Retrieve lat from dew_point whose type is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020231
train
v1
Sensor network script: Node: evaporation | code: mst | fields: depth, reading, type, lon Sensor: wind_speed | fields: reading, level, lat, type Task: Get reading from evaporation where depth appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020232
train
v1
Sensor network script: Node: evaporation | code: clr | fields: qc, unit, ts, lon Sensor: frost | fields: unit, type, value, lat Task: Retrieve lon from evaporation whose unit is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020233
train
v3
Sensor network script: Node: dew_point | code: prt | fields: value, qc, lat, ts Sensor: turbidity | fields: qc, reading, depth, type Task: Fetch lon from dew_point where reading is greater than the average of reading in turbidity for matching depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020234
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: lat, ts, type, level Sensor: wind_speed | fields: qc, type, level, depth Task: Retrieve depth from cloud_cover with value above the COUNT(depth) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020235
train
v2
Sensor network script: Node: evaporation | code: thr | fields: type, reading, depth, lon Sensor: turbidity | fields: qc, depth, lon, value Task: Fetch value from evaporation that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020236
train
v3
Sensor network script: Node: temperature | code: hub | fields: value, level, qc, ts Sensor: evaporation | fields: lon, type, qc, level Task: Retrieve value from temperature with depth above the AVG(value) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020237
train
v3
Sensor network script: Node: sunlight | code: ref | fields: level, ts, qc, reading Sensor: uv_index | fields: type, depth, lon, unit Task: Fetch lon from sunlight where depth is greater than the count of of value in uv_index for matching ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020238
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: qc, value, lon, depth Sensor: humidity | fields: reading, unit, value, depth Task: Get value from snow_depth where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020239
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: reading, level, value, depth Sensor: air_quality | fields: type, reading, value, unit Task: Retrieve reading from snow_depth that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020240
train
v2
Sensor network script: Node: visibility | code: hub | fields: depth, level, value, qc Sensor: humidity | fields: qc, level, unit, reading Task: Fetch value from visibility that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020241
train
v1
Sensor network script: Node: visibility | code: gst | fields: level, value, lon, unit Sensor: soil_moisture | fields: value, lon, unit, depth Task: Get level from visibility where qc appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020242
train
v3
Sensor network script: Node: dew_point | code: gst | fields: lat, value, depth, unit Sensor: soil_moisture | fields: lon, value, lat, unit Task: Retrieve lon from dew_point with reading above the COUNT(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020243
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: depth, lat, unit, reading Sensor: cloud_cover | fields: lon, ts, depth, lat Task: Fetch lon from wind_speed where depth is greater than the average of value in cloud_cover for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020244
train
v3
Sensor network script: Node: dew_point | code: mst | fields: value, depth, type, qc Sensor: temperature | fields: ts, reading, lat, value Task: Get depth from dew_point where value exceeds the average value from temperature for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020245
train
v2
Sensor network script: Node: sunlight | code: gst | fields: ts, lat, value, level Sensor: temperature | fields: ts, lat, type, reading Task: Retrieve value from sunlight that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020246
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: value, ts, qc, lat Sensor: humidity | fields: level, qc, lon, reading Task: Get value from snow_depth where depth appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020247
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: type, depth, qc, value Sensor: pressure | fields: ts, unit, lat, type Task: Retrieve level from snow_depth that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020248
train
v1
Sensor network script: Node: uv_index | code: mst | fields: depth, qc, ts, unit Sensor: temperature | fields: lon, unit, lat, level Task: Retrieve lat from uv_index whose depth is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020249
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: lon, depth, qc, unit Sensor: sunlight | fields: reading, type, level, qc Task: Get lat from wind_speed where reading exceeds the total reading from sunlight for the same type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020250
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: reading, type, lon, ts Sensor: humidity | fields: type, depth, reading, ts Task: Get depth from snow_depth where unit appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020251
train
v2
Sensor network script: Node: humidity | code: thr | fields: type, lat, lon, ts Sensor: rainfall | fields: level, type, unit, qc Task: Retrieve value from humidity that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020252
train
v3
Sensor network script: Node: humidity | code: thr | fields: qc, type, lat, reading Sensor: uv_index | fields: value, lat, level, unit Task: Fetch lon from humidity where depth is greater than the minimum of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020253
train
v1
Sensor network script: Node: evaporation | code: gst | fields: level, reading, qc, depth Sensor: sunlight | fields: value, ts, depth, level Task: Get reading from evaporation where depth appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020254
train
v2
Sensor network script: Node: rainfall | code: stn | fields: ts, type, lon, unit Sensor: temperature | fields: level, value, lat, depth Task: Retrieve lon from rainfall that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020255
train
v3
Sensor network script: Node: evaporation | code: prt | fields: reading, lat, level, ts Sensor: turbidity | fields: value, type, reading, ts Task: Get level from evaporation where value exceeds the maximum reading from turbidity for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020256
train
v2
Sensor network script: Node: pressure | code: thr | fields: qc, level, unit, reading Sensor: dew_point | fields: depth, unit, level, value Task: Fetch reading from pressure that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020257
train
v2
Sensor network script: Node: sunlight | code: stn | fields: depth, ts, qc, value Sensor: wind_speed | fields: lat, reading, level, lon Task: Get reading from sunlight where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020258
train
v2
Sensor network script: Node: rainfall | code: clr | fields: type, depth, level, ts Sensor: uv_index | fields: reading, depth, level, lat Task: Get lon from rainfall where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020259
train
v2
Sensor network script: Node: lightning | code: gst | fields: type, lon, unit, qc Sensor: evaporation | fields: unit, value, reading, type Task: Fetch depth from lightning that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020260
train
v1
Sensor network script: Node: drought_index | code: clr | fields: unit, ts, lon, qc Sensor: temperature | fields: unit, level, type, value Task: Retrieve value from drought_index whose ts is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020261
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, level, depth, type Sensor: visibility | fields: qc, lat, depth, ts Task: Get value from lightning where value exceeds the total reading from visibility for the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020262
train
v1
Sensor network script: Node: drought_index | code: prt | fields: unit, lon, qc, ts Sensor: humidity | fields: qc, reading, ts, level Task: Retrieve lon from drought_index whose ts is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020263
train
v2
Sensor network script: Node: pressure | code: clr | fields: depth, reading, unit, lat Sensor: wind_speed | fields: qc, ts, lat, depth Task: Retrieve reading from pressure that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020264
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: reading, lon, qc, depth Sensor: frost | fields: type, depth, lon, value Task: Fetch value from cloud_cover where reading is greater than the total of reading in frost for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020265
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lon, reading, ts, value Sensor: evaporation | fields: unit, depth, lon, level Task: Get lat from air_quality where unit appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020266
train
v1
Sensor network script: Node: air_quality | code: ref | fields: ts, level, value, reading Sensor: snow_depth | fields: reading, lat, type, level Task: Retrieve depth from air_quality whose depth is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020267
train
v2
Sensor network script: Node: frost | code: thr | fields: type, unit, lat, depth Sensor: snow_depth | fields: unit, depth, qc, reading Task: Retrieve value from frost that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020268
train
v3
Sensor network script: Node: evaporation | code: mst | fields: unit, qc, reading, ts Sensor: lightning | fields: depth, unit, type, lon Task: Retrieve level from evaporation with reading above the COUNT(value) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020269
train
v2
Sensor network script: Node: lightning | code: hub | fields: type, qc, unit, level Sensor: visibility | fields: value, lat, unit, reading Task: Retrieve lat from lightning that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020270
train
v1
Sensor network script: Node: visibility | code: clr | fields: ts, type, level, lat Sensor: turbidity | fields: level, reading, depth, ts Task: Retrieve depth from visibility whose ts is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020271
train
v2
Sensor network script: Node: pressure | code: hub | fields: lon, depth, reading, type Sensor: evaporation | fields: qc, level, ts, lon Task: Retrieve reading from pressure that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020272
train
v1
Sensor network script: Node: turbidity | code: gst | fields: qc, level, value, lat Sensor: soil_moisture | fields: depth, lat, reading, lon Task: Retrieve level from turbidity whose ts is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020273
train
v3
Sensor network script: Node: visibility | code: hub | fields: lon, qc, unit, level Sensor: snow_depth | fields: lon, value, ts, reading Task: Fetch depth from visibility where reading is greater than the maximum of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020274
train
v1
Sensor network script: Node: pressure | code: stn | fields: level, lon, type, qc Sensor: cloud_cover | fields: depth, reading, lat, value Task: Retrieve level from pressure whose depth is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020275
train
v2
Sensor network script: Node: lightning | code: hub | fields: value, lon, type, ts Sensor: evaporation | fields: lon, ts, value, reading Task: Fetch lon from lightning that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020276
train
v3
Sensor network script: Node: turbidity | code: clr | fields: unit, value, level, type Sensor: soil_moisture | fields: reading, level, depth, value Task: Fetch level from turbidity where value is greater than the minimum of value in soil_moisture for matching type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020277
train
v3
Sensor network script: Node: humidity | code: gst | fields: depth, type, ts, reading Sensor: air_quality | fields: value, ts, level, qc Task: Retrieve value from humidity with reading above the MAX(value) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020278
train
v1
Sensor network script: Node: uv_index | code: clr | fields: qc, lat, unit, depth Sensor: frost | fields: lon, reading, level, value Task: Fetch level from uv_index where type exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020279
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: reading, type, level, value Sensor: air_quality | fields: qc, level, lat, type Task: Get level from snow_depth where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020280
train
v2
Sensor network script: Node: air_quality | code: ref | fields: qc, depth, lon, value Sensor: evaporation | fields: ts, qc, lon, level Task: Retrieve depth from air_quality that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020281
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: depth, type, unit, lon Sensor: wind_speed | fields: unit, lon, qc, reading Task: Retrieve lon from cloud_cover with value above the COUNT(depth) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020282
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: reading, ts, type, depth Sensor: soil_moisture | fields: unit, type, value, qc Task: Retrieve depth from cloud_cover that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020283
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: value, unit, level, ts Sensor: pressure | fields: reading, depth, type, value Task: Retrieve lon from soil_moisture whose type is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020284
train
v1
Sensor network script: Node: humidity | code: stn | fields: value, level, reading, depth Sensor: lightning | fields: reading, level, qc, depth Task: Fetch reading from humidity where qc exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020285
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: type, ts, unit, value Sensor: evaporation | fields: unit, qc, ts, type Task: Retrieve depth from snow_depth that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020286
train
v2
Sensor network script: Node: pressure | code: thr | fields: ts, lat, unit, type Sensor: wind_speed | fields: type, depth, value, ts Task: Get depth from pressure where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020287
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: unit, value, type, lon Sensor: wind_speed | fields: lon, value, ts, unit Task: Get lat from soil_moisture where ts appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020288
train
v3
Sensor network script: Node: drought_index | code: stn | fields: unit, value, level, type Sensor: visibility | fields: lat, qc, lon, unit Task: Retrieve lon from drought_index with depth above the MAX(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020289
train
v3
Sensor network script: Node: dew_point | code: gst | fields: ts, unit, depth, qc Sensor: visibility | fields: reading, level, depth, value Task: Fetch depth from dew_point where depth is greater than the average of value in visibility for matching unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020290
train
v3
Sensor network script: Node: humidity | code: prt | fields: qc, depth, unit, lat Sensor: soil_moisture | fields: unit, qc, ts, lat Task: Fetch level from humidity where depth is greater than the total of reading in soil_moisture for matching depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020291
train
v2
Sensor network script: Node: visibility | code: gst | fields: level, reading, depth, lon Sensor: turbidity | fields: value, lat, unit, qc Task: Get value from visibility where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020292
train
v1
Sensor network script: Node: humidity | code: thr | fields: reading, level, value, ts Sensor: air_quality | fields: value, type, reading, unit Task: Retrieve level from humidity whose depth is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020293
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lat, value, reading, lon Sensor: dew_point | fields: value, ts, lon, depth Task: Fetch level from soil_moisture where depth exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020294
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: unit, reading, qc, lat Sensor: sunlight | fields: lat, lon, type, depth Task: Get reading from soil_moisture where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020295
train
v3
Sensor network script: Node: temperature | code: gst | fields: value, ts, type, unit Sensor: snow_depth | fields: type, value, qc, lat Task: Get level from temperature where value exceeds the average depth from snow_depth for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020296
train
v3
Sensor network script: Node: pressure | code: thr | fields: unit, qc, lon, type Sensor: sunlight | fields: depth, ts, value, type Task: Get reading from pressure where reading exceeds the average depth from sunlight for the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020297
train
v2
Sensor network script: Node: visibility | code: stn | fields: level, ts, reading, qc Sensor: wind_speed | fields: type, ts, depth, lat Task: Retrieve lon from visibility that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020298
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: level, depth, ts, unit Sensor: turbidity | fields: level, reading, unit, depth Task: Retrieve value from soil_moisture with reading above the MAX(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020299
train