variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: visibility | code: thr | fields: unit, depth, ts, value Sensor: rainfall | fields: qc, value, lat, unit Task: Fetch depth from visibility that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076200
train
v1
Sensor network script: Node: visibility | code: hub | fields: value, unit, lon, level Sensor: sunlight | fields: lon, value, ts, lat Task: Fetch depth from visibility where type exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076201
train
v1
Sensor network script: Node: frost | code: ref | fields: value, unit, reading, lon Sensor: snow_depth | fields: ts, value, reading, depth Task: Retrieve lon from frost whose qc is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076202
train
v1
Sensor network script: Node: lightning | code: prt | fields: unit, type, qc, level Sensor: wind_speed | fields: depth, qc, level, lat Task: Retrieve reading from lightning whose type is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076203
train
v1
Sensor network script: Node: dew_point | code: prt | fields: qc, value, reading, type Sensor: humidity | fields: lon, ts, unit, qc Task: Fetch depth from dew_point where qc exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076204
train
v2
Sensor network script: Node: rainfall | code: mst | fields: depth, qc, level, ts Sensor: soil_moisture | fields: unit, level, qc, depth Task: Retrieve lon from rainfall that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076205
train
v1
Sensor network script: Node: pressure | code: hub | fields: type, lat, value, reading Sensor: turbidity | fields: lat, ts, type, unit Task: Retrieve depth from pressure whose depth is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076206
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: depth, unit, reading, lat Sensor: rainfall | fields: lat, level, type, depth Task: Get level from snow_depth where type appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076207
train
v1
Sensor network script: Node: pressure | code: ref | fields: ts, reading, value, depth Sensor: humidity | fields: reading, value, depth, qc Task: Get reading from pressure where ts appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076208
train
v2
Sensor network script: Node: frost | code: thr | fields: depth, type, qc, lon Sensor: wind_speed | fields: lon, level, type, value Task: Retrieve value from frost that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076209
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: value, qc, lat, depth Sensor: frost | fields: lat, level, value, reading Task: Get lat from soil_moisture where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076210
train
v2
Sensor network script: Node: visibility | code: ref | fields: type, unit, level, lon Sensor: lightning | fields: level, lon, depth, qc Task: Retrieve depth from visibility that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076211
train
v1
Sensor network script: Node: sunlight | code: ref | fields: type, value, reading, lon Sensor: rainfall | fields: type, depth, ts, unit Task: Get depth from sunlight where unit appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076212
train
v3
Sensor network script: Node: humidity | code: thr | fields: lat, unit, qc, ts Sensor: snow_depth | fields: unit, depth, type, ts Task: Fetch value from humidity where value is greater than the minimum of value in snow_depth for matching qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076213
train
v3
Sensor network script: Node: uv_index | code: hub | fields: value, level, reading, depth Sensor: pressure | fields: level, reading, type, depth Task: Fetch lon from uv_index where reading is greater than the average of reading in pressure for matching ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076214
train
v2
Sensor network script: Node: pressure | code: thr | fields: lat, value, depth, type Sensor: rainfall | fields: value, lon, ts, qc Task: Retrieve level from pressure that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076215
train
v1
Sensor network script: Node: pressure | code: thr | fields: depth, lat, type, reading Sensor: frost | fields: level, depth, value, unit Task: Get lon from pressure where unit appears in frost readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076216
train
v3
Sensor network script: Node: dew_point | code: gst | fields: level, unit, lat, lon Sensor: pressure | fields: unit, qc, type, reading Task: Get level from dew_point where reading exceeds the minimum depth from pressure for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076217
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: reading, type, level, qc Sensor: drought_index | fields: ts, qc, type, lon Task: Retrieve value from cloud_cover with reading above the AVG(depth) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076218
train
v2
Sensor network script: Node: temperature | code: stn | fields: depth, qc, level, reading Sensor: sunlight | fields: ts, depth, unit, reading Task: Fetch value from temperature that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076219
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: level, type, value, lat Sensor: sunlight | fields: level, reading, lon, ts Task: Fetch lat from soil_moisture that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076220
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: depth, reading, lat, ts Sensor: sunlight | fields: value, lat, lon, ts Task: Get value from snow_depth where value exceeds the minimum depth from sunlight for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076221
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: lat, reading, level, type Sensor: frost | fields: qc, ts, lon, reading Task: Get depth from wind_speed where ts appears in frost readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076222
train
v1
Sensor network script: Node: temperature | code: mst | fields: level, reading, type, unit Sensor: evaporation | fields: depth, unit, lon, level Task: Retrieve level from temperature whose qc is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076223
train
v3
Sensor network script: Node: pressure | code: prt | fields: reading, lat, level, ts Sensor: sunlight | fields: lat, value, lon, type Task: Fetch lon from pressure where value is greater than the total of reading in sunlight for matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076224
train
v3
Sensor network script: Node: drought_index | code: prt | fields: ts, unit, lat, lon Sensor: snow_depth | fields: level, lon, ts, type Task: Retrieve depth from drought_index with value above the MIN(value) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076225
train
v2
Sensor network script: Node: frost | code: ref | fields: lon, reading, ts, depth Sensor: visibility | fields: value, ts, depth, lon Task: Fetch depth from frost that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076226
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lat, reading, depth, lon Sensor: wind_speed | fields: lon, value, unit, lat Task: Fetch value from uv_index where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076227
train
v2
Sensor network script: Node: humidity | code: mst | fields: lat, ts, depth, type Sensor: drought_index | fields: depth, lat, ts, type Task: Retrieve lat from humidity that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076228
train
v1
Sensor network script: Node: pressure | code: thr | fields: reading, ts, qc, level Sensor: visibility | fields: type, value, depth, ts Task: Retrieve lat from pressure whose unit is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076229
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: level, qc, ts, reading Sensor: sunlight | fields: reading, value, lon, type Task: Fetch lon from snow_depth where unit exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076230
train
v3
Sensor network script: Node: lightning | code: gst | fields: value, lat, level, lon Sensor: visibility | fields: unit, depth, type, lat Task: Retrieve lat from lightning with depth above the COUNT(reading) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076231
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: lon, value, lat, type Sensor: frost | fields: lat, ts, unit, qc Task: Retrieve value from snow_depth whose depth is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076232
train
v3
Sensor network script: Node: pressure | code: stn | fields: value, lon, qc, depth Sensor: uv_index | fields: qc, depth, type, lat Task: Retrieve level from pressure with value above the COUNT(value) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076233
train
v3
Sensor network script: Node: rainfall | code: prt | fields: qc, reading, ts, lon Sensor: pressure | fields: depth, lon, ts, lat Task: Get reading from rainfall where value exceeds the count of value from pressure for the same type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076234
train
v2
Sensor network script: Node: evaporation | code: stn | fields: depth, level, qc, lat Sensor: air_quality | fields: unit, lat, depth, reading Task: Retrieve lon from evaporation that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076235
train
v1
Sensor network script: Node: visibility | code: prt | fields: value, lon, depth, qc Sensor: turbidity | fields: value, unit, lat, depth Task: Get value from visibility where unit appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076236
train
v1
Sensor network script: Node: turbidity | code: hub | fields: reading, depth, qc, level Sensor: snow_depth | fields: depth, qc, lon, reading Task: Get lat from turbidity where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076237
train
v2
Sensor network script: Node: frost | code: stn | fields: ts, depth, qc, lon Sensor: cloud_cover | fields: unit, value, depth, level Task: Get level from frost where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076238
train
v3
Sensor network script: Node: temperature | code: gst | fields: reading, lon, level, lat Sensor: snow_depth | fields: qc, value, lon, type Task: Retrieve lat from temperature with reading above the MIN(reading) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076239
train
v1
Sensor network script: Node: sunlight | code: prt | fields: qc, lat, reading, ts Sensor: uv_index | fields: unit, value, type, depth Task: Fetch level from sunlight where type exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076240
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: value, level, lon, qc Sensor: rainfall | fields: type, depth, reading, unit Task: Fetch lat from cloud_cover where reading is greater than the minimum of depth in rainfall for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076241
train
v3
Sensor network script: Node: air_quality | code: thr | fields: lon, depth, qc, reading Sensor: turbidity | fields: level, type, value, qc Task: Retrieve lon from air_quality with value above the SUM(value) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076242
train
v2
Sensor network script: Node: temperature | code: clr | fields: depth, qc, value, lat Sensor: turbidity | fields: qc, reading, level, unit Task: Get reading from temperature where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076243
train
v1
Sensor network script: Node: dew_point | code: mst | fields: type, level, qc, lat Sensor: drought_index | fields: qc, unit, lat, value Task: Fetch reading from dew_point where depth exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076244
train
v1
Sensor network script: Node: pressure | code: mst | fields: qc, depth, unit, ts Sensor: wind_speed | fields: level, ts, lat, value Task: Retrieve reading from pressure whose unit is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076245
train
v3
Sensor network script: Node: dew_point | code: prt | fields: qc, value, ts, unit Sensor: lightning | fields: ts, lat, reading, type Task: Fetch lat from dew_point where value is greater than the total of value in lightning for matching unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076246
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lon, value, ts, depth Sensor: visibility | fields: ts, level, lat, value Task: Retrieve level from turbidity with reading above the SUM(depth) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076247
train
v2
Sensor network script: Node: lightning | code: hub | fields: ts, unit, lat, reading Sensor: evaporation | fields: lat, type, depth, level Task: Get lon from lightning where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076248
train
v1
Sensor network script: Node: drought_index | code: ref | fields: type, unit, level, qc Sensor: dew_point | fields: ts, lat, qc, lon Task: Retrieve value from drought_index whose depth is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076249
train
v2
Sensor network script: Node: drought_index | code: ref | fields: unit, reading, value, lon Sensor: pressure | fields: value, level, lon, type Task: Fetch lon from drought_index that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076250
train
v3
Sensor network script: Node: humidity | code: stn | fields: depth, unit, value, type Sensor: evaporation | fields: depth, unit, lat, type Task: Fetch reading from humidity where value is greater than the total of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076251
train
v1
Sensor network script: Node: visibility | code: stn | fields: value, lon, ts, type Sensor: uv_index | fields: depth, lat, qc, lon Task: Get lon from visibility where qc appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076252
train
v1
Sensor network script: Node: humidity | code: clr | fields: lat, ts, level, value Sensor: sunlight | fields: value, lon, unit, lat Task: Fetch value from humidity where type exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076253
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: lon, ts, type, value Sensor: temperature | fields: reading, qc, value, unit Task: Retrieve reading from wind_speed whose depth is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076254
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: lat, unit, qc, lon Sensor: turbidity | fields: value, reading, unit, lon Task: Fetch lat from snow_depth where unit exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076255
train
v3
Sensor network script: Node: frost | code: clr | fields: depth, type, lat, reading Sensor: cloud_cover | fields: lon, qc, reading, ts Task: Retrieve level from frost with depth above the MIN(value) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076256
train
v1
Sensor network script: Node: drought_index | code: prt | fields: depth, unit, lat, ts Sensor: snow_depth | fields: unit, reading, ts, type Task: Get lat from drought_index where type appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076257
train
v2
Sensor network script: Node: turbidity | code: hub | fields: depth, qc, value, lat Sensor: soil_moisture | fields: ts, value, type, depth Task: Retrieve lat from turbidity that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076258
train
v1
Sensor network script: Node: pressure | code: mst | fields: value, qc, lon, type Sensor: cloud_cover | fields: value, lon, level, lat Task: Get depth from pressure where qc appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076259
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: type, lat, lon, level Sensor: wind_speed | fields: type, ts, lat, value Task: Get level from cloud_cover where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076260
train
v2
Sensor network script: Node: rainfall | code: stn | fields: ts, lat, qc, depth Sensor: wind_speed | fields: level, depth, type, ts Task: Get level from rainfall where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076261
train
v2
Sensor network script: Node: pressure | code: thr | fields: depth, value, lon, lat Sensor: lightning | fields: depth, unit, lat, type Task: Fetch lat from pressure that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076262
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: ts, lon, qc, level Sensor: air_quality | fields: unit, lon, depth, ts Task: Get reading from soil_moisture where depth exceeds the total value from air_quality for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076263
train
v1
Sensor network script: Node: sunlight | code: mst | fields: level, type, ts, value Sensor: air_quality | fields: value, type, ts, lon Task: Get lon from sunlight where unit appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076264
train
v1
Sensor network script: Node: pressure | code: hub | fields: level, type, value, unit Sensor: sunlight | fields: type, lat, ts, reading Task: Retrieve lon from pressure whose depth is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076265
train
v3
Sensor network script: Node: visibility | code: prt | fields: value, lat, lon, depth Sensor: dew_point | fields: reading, type, depth, lon Task: Fetch level from visibility where depth is greater than the minimum of value in dew_point for matching ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076266
train
v3
Sensor network script: Node: sunlight | code: clr | fields: qc, reading, ts, type Sensor: evaporation | fields: qc, ts, value, level Task: Retrieve value from sunlight with depth above the SUM(value) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076267
train
v3
Sensor network script: Node: sunlight | code: ref | fields: value, qc, ts, reading Sensor: humidity | fields: lon, type, depth, ts Task: Retrieve depth from sunlight with value above the MAX(reading) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076268
train
v2
Sensor network script: Node: air_quality | code: mst | fields: depth, qc, type, lat Sensor: drought_index | fields: unit, ts, reading, depth Task: Fetch lat from air_quality that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076269
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: qc, value, lat, depth Sensor: cloud_cover | fields: lat, level, value, ts Task: Fetch reading from snow_depth where unit exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076270
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: lat, unit, depth, value Sensor: visibility | fields: ts, reading, value, level Task: Fetch lat from cloud_cover where depth is greater than the average of value in visibility for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076271
train
v1
Sensor network script: Node: rainfall | code: gst | fields: reading, level, qc, value Sensor: snow_depth | fields: ts, value, reading, type Task: Retrieve lat from rainfall whose unit is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076272
train
v1
Sensor network script: Node: dew_point | code: hub | fields: lat, reading, ts, value Sensor: temperature | fields: reading, qc, lon, lat Task: Get reading from dew_point where type appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076273
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: type, level, unit, lon Sensor: air_quality | fields: value, reading, unit, level Task: Fetch depth from soil_moisture that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076274
train
v3
Sensor network script: Node: turbidity | code: stn | fields: type, depth, ts, level Sensor: frost | fields: lon, reading, qc, level Task: Fetch reading from turbidity where reading is greater than the total of depth in frost for matching unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076275
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: unit, level, type, depth Sensor: evaporation | fields: unit, depth, type, value Task: Fetch depth from wind_speed that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076276
train
v3
Sensor network script: Node: uv_index | code: ref | fields: qc, depth, type, lat Sensor: soil_moisture | fields: lon, depth, value, lat Task: Fetch lat from uv_index where reading is greater than the average of depth in soil_moisture for matching ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076277
train
v2
Sensor network script: Node: drought_index | code: mst | fields: level, reading, value, lon Sensor: frost | fields: reading, lon, unit, depth Task: Retrieve lat from drought_index that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076278
train
v2
Sensor network script: Node: dew_point | code: stn | fields: reading, qc, depth, type Sensor: soil_moisture | fields: ts, qc, level, type Task: Retrieve reading from dew_point that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076279
train
v1
Sensor network script: Node: frost | code: ref | fields: level, type, ts, lat Sensor: sunlight | fields: qc, depth, lon, type Task: Retrieve value from frost whose unit is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076280
train
v1
Sensor network script: Node: visibility | code: clr | fields: type, reading, ts, lon Sensor: pressure | fields: value, lon, unit, type Task: Retrieve lat from visibility whose depth is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076281
train
v3
Sensor network script: Node: rainfall | code: stn | fields: reading, level, lon, ts Sensor: temperature | fields: lon, type, unit, depth Task: Retrieve level from rainfall with value above the MAX(depth) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076282
train
v1
Sensor network script: Node: frost | code: mst | fields: value, type, qc, unit Sensor: rainfall | fields: type, ts, reading, lon Task: Get value from frost where unit appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076283
train
v2
Sensor network script: Node: air_quality | code: clr | fields: level, value, ts, qc Sensor: dew_point | fields: unit, value, reading, qc Task: Get value from air_quality where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076284
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, depth, unit, reading Sensor: humidity | fields: reading, lon, depth, qc Task: Get lat from snow_depth where ts appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076285
train
v3
Sensor network script: Node: evaporation | code: thr | fields: level, ts, value, qc Sensor: dew_point | fields: ts, value, qc, lon Task: Retrieve value from evaporation with reading above the AVG(value) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076286
train
v1
Sensor network script: Node: pressure | code: hub | fields: lon, ts, reading, unit Sensor: humidity | fields: reading, lat, level, ts Task: Retrieve depth from pressure whose ts is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076287
train
v3
Sensor network script: Node: turbidity | code: clr | fields: depth, qc, ts, lat Sensor: sunlight | fields: ts, qc, type, level Task: Get lon from turbidity where reading exceeds the count of depth from sunlight for the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076288
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, depth, lat, qc Sensor: soil_moisture | fields: qc, ts, lon, unit Task: Fetch reading from drought_index where qc exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076289
train
v3
Sensor network script: Node: temperature | code: ref | fields: reading, value, qc, type Sensor: humidity | fields: level, type, lat, value Task: Get lat from temperature where reading exceeds the average reading from humidity for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076290
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lon, qc, ts, level Sensor: frost | fields: value, qc, lat, unit Task: Retrieve depth from rainfall whose type is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076291
train
v2
Sensor network script: Node: humidity | code: gst | fields: value, depth, lat, unit Sensor: visibility | fields: value, lon, qc, depth Task: Get depth from humidity where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076292
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: ts, depth, lon, value Sensor: evaporation | fields: level, qc, lat, lon Task: Get value from wind_speed where reading exceeds the total value from evaporation for the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076293
train
v3
Sensor network script: Node: turbidity | code: ref | fields: lon, level, reading, lat Sensor: snow_depth | fields: depth, reading, value, ts Task: Retrieve level from turbidity with depth above the MIN(value) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076294
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: level, qc, lon, lat Sensor: pressure | fields: qc, depth, reading, ts Task: Retrieve reading from wind_speed whose ts is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076295
train
v2
Sensor network script: Node: visibility | code: ref | fields: unit, qc, lat, reading Sensor: sunlight | fields: level, ts, lon, qc Task: Retrieve level from visibility that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076296
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: value, type, ts, reading Sensor: humidity | fields: depth, type, unit, qc Task: Retrieve value from soil_moisture that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076297
train
v3
Sensor network script: Node: rainfall | code: prt | fields: reading, level, value, ts Sensor: humidity | fields: value, unit, type, reading Task: Retrieve level from rainfall with value above the COUNT(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076298
train
v1
Sensor network script: Node: dew_point | code: ref | fields: type, unit, value, reading Sensor: drought_index | fields: lat, type, value, qc Task: Get value from dew_point where depth appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076299
train