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: drought_index | code: thr | fields: reading, value, ts, depth Sensor: wind_speed | fields: ts, value, level, qc Task: Fetch value from drought_index where value is greater than the minimum of depth in wind_speed for matching qc. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060200
train
v1
Sensor network script: Node: pressure | code: thr | fields: unit, level, depth, qc Sensor: visibility | fields: depth, type, level, ts Task: Retrieve depth from pressure whose type is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060201
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, ts, lat, qc Sensor: lightning | fields: unit, qc, level, depth Task: Fetch depth from evaporation where depth exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060202
train
v1
Sensor network script: Node: temperature | code: ref | fields: ts, qc, reading, value Sensor: snow_depth | fields: value, ts, reading, qc Task: Retrieve reading from temperature whose qc is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060203
train
v3
Sensor network script: Node: turbidity | code: hub | fields: qc, value, level, lat Sensor: rainfall | fields: ts, level, type, value Task: Retrieve reading from turbidity with reading above the MAX(value) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060204
train
v3
Sensor network script: Node: evaporation | code: stn | fields: qc, type, value, lat Sensor: pressure | fields: reading, qc, lat, ts Task: Fetch level from evaporation where reading is greater than the minimum of depth in pressure for matching type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060205
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: unit, value, reading, qc Sensor: pressure | fields: level, lon, qc, reading Task: Get reading from cloud_cover where depth exceeds the total reading from pressure for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060206
train
v1
Sensor network script: Node: visibility | code: prt | fields: value, type, lon, unit Sensor: lightning | fields: type, reading, lat, value Task: Get value from visibility where ts appears in lightning readings with matching type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060207
train
v2
Sensor network script: Node: turbidity | code: hub | fields: ts, unit, level, qc Sensor: air_quality | fields: qc, lat, ts, depth Task: Retrieve reading from turbidity that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060208
train
v2
Sensor network script: Node: air_quality | code: gst | fields: lat, depth, ts, lon Sensor: cloud_cover | fields: qc, reading, level, lat Task: Fetch lat from air_quality that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060209
train
v3
Sensor network script: Node: dew_point | code: clr | fields: level, lat, lon, value Sensor: air_quality | fields: qc, value, depth, lat Task: Fetch lat from dew_point where value is greater than the maximum of value in air_quality for matching qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060210
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lat, level, ts, type Sensor: temperature | fields: lon, level, lat, qc Task: Get reading from uv_index where qc appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060211
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: reading, value, ts, level Sensor: turbidity | fields: level, value, unit, reading Task: Get depth from wind_speed where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060212
train
v2
Sensor network script: Node: sunlight | code: thr | fields: unit, lon, ts, level Sensor: lightning | fields: ts, lon, lat, value Task: Get lon from sunlight where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060213
train
v1
Sensor network script: Node: pressure | code: clr | fields: qc, lon, reading, level Sensor: uv_index | fields: ts, lon, level, qc Task: Get reading from pressure where depth appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060214
train
v2
Sensor network script: Node: rainfall | code: thr | fields: level, lon, unit, depth Sensor: frost | fields: lon, ts, qc, lat Task: Get lat from rainfall where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060215
train
v2
Sensor network script: Node: dew_point | code: mst | fields: value, reading, type, ts Sensor: soil_moisture | fields: lat, reading, ts, unit Task: Retrieve value from dew_point that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060216
train
v3
Sensor network script: Node: rainfall | code: stn | fields: ts, lon, unit, lat Sensor: snow_depth | fields: lon, depth, value, unit Task: Fetch reading from rainfall where value is greater than the maximum of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060217
train
v1
Sensor network script: Node: dew_point | code: hub | fields: lat, type, unit, value Sensor: drought_index | fields: type, reading, level, value Task: Retrieve reading from dew_point whose type is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060218
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lon, unit, reading, value Sensor: soil_moisture | fields: level, unit, value, qc Task: Fetch level from evaporation where ts exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060219
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: lat, qc, ts, unit Sensor: uv_index | fields: unit, lat, level, reading Task: Fetch lat from snow_depth where qc exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060220
train
v2
Sensor network script: Node: frost | code: prt | fields: qc, lat, depth, level Sensor: evaporation | fields: ts, qc, lat, value Task: Fetch value from frost that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060221
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lat, value, lon, type Sensor: rainfall | fields: reading, level, lat, depth Task: Fetch depth from air_quality where ts exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060222
train
v3
Sensor network script: Node: uv_index | code: gst | fields: qc, type, unit, value Sensor: visibility | fields: level, lat, ts, qc Task: Fetch reading from uv_index where value is greater than the average of reading in visibility for matching qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060223
train
v1
Sensor network script: Node: drought_index | code: clr | fields: depth, value, qc, ts Sensor: pressure | fields: depth, lat, reading, unit Task: Fetch value from drought_index where qc exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060224
train
v1
Sensor network script: Node: uv_index | code: gst | fields: lat, depth, unit, reading Sensor: temperature | fields: ts, lat, depth, level Task: Get depth from uv_index where ts appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060225
train
v3
Sensor network script: Node: rainfall | code: prt | fields: unit, level, value, lon Sensor: uv_index | fields: level, ts, type, qc Task: Retrieve level from rainfall with reading above the AVG(value) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060226
train
v2
Sensor network script: Node: sunlight | code: gst | fields: qc, ts, level, lon Sensor: lightning | fields: qc, depth, value, lon Task: Get level from sunlight where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060227
train
v3
Sensor network script: Node: lightning | code: ref | fields: ts, lon, level, unit Sensor: uv_index | fields: level, lon, qc, lat Task: Get lon from lightning where value exceeds the maximum value from uv_index for the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060228
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lon, lat, depth, value Sensor: evaporation | fields: lat, qc, depth, ts Task: Fetch lon from rainfall where unit exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060229
train
v3
Sensor network script: Node: visibility | code: ref | fields: level, type, lon, ts Sensor: wind_speed | fields: qc, type, unit, depth Task: Retrieve lon from visibility with reading above the AVG(value) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060230
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lat, value, depth, type Sensor: drought_index | fields: depth, reading, unit, ts Task: Retrieve lon from dew_point whose qc is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060231
train
v2
Sensor network script: Node: evaporation | code: prt | fields: ts, unit, lat, depth Sensor: uv_index | fields: value, reading, type, ts Task: Get depth from evaporation where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060232
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: lat, lon, ts, reading Sensor: visibility | fields: ts, value, qc, unit Task: Fetch level from wind_speed where value is greater than the total of reading in visibility for matching type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060233
train
v1
Sensor network script: Node: lightning | code: thr | fields: level, qc, lon, value Sensor: pressure | fields: lat, unit, reading, lon Task: Get lat from lightning where depth appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060234
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: ts, depth, value, qc Sensor: frost | fields: lat, qc, value, lon Task: Fetch level from wind_speed where depth is greater than the total of value in frost for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="qc"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060235
train
v2
Sensor network script: Node: evaporation | code: gst | fields: lat, level, lon, unit Sensor: lightning | fields: unit, type, level, value Task: Retrieve lon from evaporation that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060236
train
v3
Sensor network script: Node: frost | code: hub | fields: level, value, reading, unit Sensor: uv_index | fields: lat, reading, lon, level Task: Fetch lon from frost where value is greater than the minimum of depth in uv_index for matching type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060237
train
v3
Sensor network script: Node: evaporation | code: stn | fields: type, qc, level, lon Sensor: rainfall | fields: unit, type, ts, qc Task: Retrieve reading from evaporation with depth above the MIN(depth) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060238
train
v2
Sensor network script: Node: evaporation | code: clr | fields: reading, ts, lat, unit Sensor: drought_index | fields: value, qc, lat, unit Task: Get value from evaporation where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060239
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: type, reading, lon, unit Sensor: temperature | fields: value, lat, unit, depth Task: Retrieve reading from snow_depth whose qc is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060240
train
v2
Sensor network script: Node: sunlight | code: mst | fields: lat, unit, lon, reading Sensor: humidity | fields: depth, reading, qc, lat Task: Fetch lat from sunlight that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060241
train
v1
Sensor network script: Node: frost | code: stn | fields: qc, reading, value, lat Sensor: cloud_cover | fields: depth, reading, ts, qc Task: Retrieve depth from frost whose type is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060242
train
v1
Sensor network script: Node: pressure | code: hub | fields: unit, lon, level, lat Sensor: wind_speed | fields: ts, unit, value, depth Task: Fetch depth from pressure where ts exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060243
train
v1
Sensor network script: Node: humidity | code: stn | fields: lat, type, level, lon Sensor: air_quality | fields: value, ts, type, reading Task: Retrieve lon from humidity whose ts is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060244
train
v3
Sensor network script: Node: visibility | code: ref | fields: value, lon, unit, lat Sensor: lightning | fields: lon, reading, depth, unit Task: Fetch depth from visibility where value is greater than the maximum of depth in lightning for matching depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060245
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: type, depth, lat, reading Sensor: air_quality | fields: value, level, reading, depth Task: Fetch value from wind_speed that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060246
train
v3
Sensor network script: Node: lightning | code: stn | fields: reading, lat, value, unit Sensor: uv_index | fields: value, type, ts, qc Task: Retrieve reading from lightning with depth above the MAX(depth) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060247
train
v3
Sensor network script: Node: dew_point | code: stn | fields: qc, unit, level, value Sensor: lightning | fields: type, level, reading, qc Task: Get depth from dew_point where depth exceeds the count of depth from lightning for the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060248
train
v2
Sensor network script: Node: temperature | code: mst | fields: depth, lat, reading, qc Sensor: snow_depth | fields: ts, lat, depth, unit Task: Get lon from temperature where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060249
train
v3
Sensor network script: Node: temperature | code: ref | fields: ts, lat, depth, lon Sensor: dew_point | fields: value, ts, lat, depth Task: Fetch lat from temperature where value is greater than the maximum of value in dew_point for matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060250
train
v1
Sensor network script: Node: sunlight | code: hub | fields: level, unit, lon, type Sensor: rainfall | fields: reading, lon, type, qc Task: Fetch lon from sunlight where unit exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060251
train
v1
Sensor network script: Node: drought_index | code: ref | fields: type, unit, qc, value Sensor: rainfall | fields: ts, type, unit, lat Task: Retrieve reading from drought_index whose type is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060252
train
v2
Sensor network script: Node: air_quality | code: ref | fields: lon, qc, unit, lat Sensor: evaporation | fields: value, lon, qc, reading Task: Retrieve level from air_quality that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060253
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: value, depth, type, lat Sensor: visibility | fields: unit, level, type, lat Task: Retrieve depth from cloud_cover whose depth is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060254
train
v2
Sensor network script: Node: drought_index | code: stn | fields: level, ts, unit, reading Sensor: dew_point | fields: ts, value, reading, unit Task: Retrieve depth from drought_index that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060255
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: ts, lat, lon, reading Sensor: air_quality | fields: value, reading, lon, depth Task: Fetch lat from snow_depth where ts exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060256
train
v2
Sensor network script: Node: turbidity | code: prt | fields: type, depth, lon, lat Sensor: uv_index | fields: ts, lon, unit, level Task: Retrieve level from turbidity that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060257
train
v3
Sensor network script: Node: frost | code: stn | fields: lon, lat, level, depth Sensor: humidity | fields: ts, depth, level, value Task: Retrieve lon from frost with depth above the COUNT(depth) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060258
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: value, qc, type, unit Sensor: visibility | fields: reading, lon, type, depth Task: Retrieve lon from cloud_cover that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060259
train
v1
Sensor network script: Node: pressure | code: ref | fields: qc, ts, value, unit Sensor: lightning | fields: unit, reading, level, qc Task: Retrieve lon from pressure whose qc is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060260
train
v2
Sensor network script: Node: humidity | code: stn | fields: reading, lon, qc, ts Sensor: visibility | fields: type, depth, lat, ts Task: Fetch reading from humidity that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060261
train
v2
Sensor network script: Node: pressure | code: stn | fields: qc, lon, value, ts Sensor: soil_moisture | fields: lat, level, reading, value Task: Get reading from pressure where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060262
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: depth, ts, unit, reading Sensor: temperature | fields: reading, unit, depth, type Task: Get depth from cloud_cover where ts appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060263
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: level, unit, value, reading Sensor: dew_point | fields: value, depth, ts, reading Task: Fetch lat from cloud_cover where depth is greater than the maximum of depth in dew_point for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060264
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: reading, depth, type, value Sensor: lightning | fields: depth, reading, qc, unit Task: Retrieve depth from soil_moisture that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060265
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: ts, unit, lat, reading Sensor: temperature | fields: qc, ts, lon, value Task: Get lon from wind_speed where depth exceeds the average value from temperature for the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060266
train
v1
Sensor network script: Node: frost | code: mst | fields: value, qc, reading, depth Sensor: dew_point | fields: level, lon, lat, ts Task: Retrieve lon from frost whose ts is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060267
train
v1
Sensor network script: Node: turbidity | code: gst | fields: reading, lat, level, qc Sensor: drought_index | fields: depth, lat, ts, lon Task: Retrieve lon from turbidity whose ts is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060268
train
v3
Sensor network script: Node: humidity | code: prt | fields: qc, level, value, ts Sensor: lightning | fields: reading, lat, lon, level Task: Get lon from humidity where reading exceeds the average reading from lightning for the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060269
train
v1
Sensor network script: Node: air_quality | code: prt | fields: level, lon, depth, ts Sensor: snow_depth | fields: ts, unit, qc, value Task: Fetch level from air_quality where depth exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060270
train
v2
Sensor network script: Node: temperature | code: ref | fields: value, reading, lat, type Sensor: wind_speed | fields: reading, qc, value, type Task: Fetch value from temperature that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060271
train
v3
Sensor network script: Node: visibility | code: ref | fields: type, depth, level, ts Sensor: soil_moisture | fields: unit, lon, ts, reading Task: Fetch depth from visibility where depth is greater than the count of of value in soil_moisture for matching unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060272
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: type, unit, reading, level Sensor: turbidity | fields: type, lon, lat, qc Task: Get level from wind_speed where depth exceeds the total reading from turbidity for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060273
train
v3
Sensor network script: Node: evaporation | code: prt | fields: depth, value, lat, level Sensor: snow_depth | fields: lat, lon, type, level Task: Retrieve value from evaporation with value above the AVG(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060274
train
v3
Sensor network script: Node: pressure | code: stn | fields: qc, depth, type, ts Sensor: drought_index | fields: type, lat, level, lon Task: Retrieve level from pressure with value above the COUNT(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060275
train
v2
Sensor network script: Node: rainfall | code: thr | fields: reading, lat, lon, unit Sensor: evaporation | fields: type, reading, depth, value Task: Get level from rainfall where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060276
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lat, ts, lon, type Sensor: visibility | fields: level, unit, lat, depth Task: Retrieve level from uv_index with reading above the MAX(depth) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060277
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: unit, ts, level, reading Sensor: evaporation | fields: lat, reading, level, lon Task: Get lon from soil_moisture where depth exceeds the average depth from evaporation for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060278
train
v3
Sensor network script: Node: turbidity | code: thr | fields: unit, lat, reading, ts Sensor: cloud_cover | fields: depth, level, unit, type Task: Retrieve lat from turbidity with reading above the COUNT(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060279
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lat, lon, depth, value Sensor: frost | fields: lat, qc, reading, unit Task: Retrieve reading from drought_index whose qc is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060280
train
v2
Sensor network script: Node: pressure | code: mst | fields: level, qc, type, reading Sensor: rainfall | fields: depth, level, unit, lat Task: Get lat from pressure where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060281
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: level, lat, ts, unit Sensor: visibility | fields: lat, reading, qc, type Task: Retrieve depth from snow_depth that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060282
train
v2
Sensor network script: Node: dew_point | code: thr | fields: reading, unit, value, qc Sensor: snow_depth | fields: type, level, lat, lon Task: Retrieve reading from dew_point that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060283
train
v1
Sensor network script: Node: pressure | code: hub | fields: lat, ts, lon, value Sensor: dew_point | fields: lon, level, value, lat Task: Fetch depth from pressure where unit exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060284
train
v1
Sensor network script: Node: visibility | code: stn | fields: reading, unit, lon, qc Sensor: turbidity | fields: type, lat, level, qc Task: Fetch reading from visibility where unit exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060285
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: depth, lat, ts, reading Sensor: turbidity | fields: type, depth, reading, unit Task: Get depth from cloud_cover where reading exceeds the maximum depth from turbidity for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060286
train
v2
Sensor network script: Node: turbidity | code: mst | fields: ts, lat, value, type Sensor: air_quality | fields: value, ts, qc, unit Task: Get value from turbidity where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060287
train
v3
Sensor network script: Node: temperature | code: thr | fields: value, qc, unit, depth Sensor: wind_speed | fields: value, lat, ts, qc Task: Fetch lon from temperature where value is greater than the average of depth in wind_speed for matching type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060288
train
v3
Sensor network script: Node: turbidity | code: gst | fields: value, type, level, unit Sensor: soil_moisture | fields: level, lat, value, ts Task: Retrieve reading from turbidity with value above the COUNT(value) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060289
train
v2
Sensor network script: Node: sunlight | code: prt | fields: level, lat, type, unit Sensor: drought_index | fields: unit, level, qc, type Task: Fetch lon from sunlight that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060290
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: depth, ts, lon, qc Sensor: lightning | fields: depth, lat, qc, level Task: Retrieve lat from snow_depth that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060291
train
v1
Sensor network script: Node: air_quality | code: hub | fields: qc, lat, depth, level Sensor: uv_index | fields: depth, value, lon, unit Task: Get level from air_quality where type appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060292
train
v2
Sensor network script: Node: evaporation | code: gst | fields: level, unit, lat, ts Sensor: frost | fields: unit, qc, depth, ts Task: Get value from evaporation where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060293
train
v2
Sensor network script: Node: sunlight | code: clr | fields: value, ts, reading, lat Sensor: snow_depth | fields: value, lat, ts, type Task: Fetch level from sunlight that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060294
train
v1
Sensor network script: Node: turbidity | code: hub | fields: ts, unit, value, type Sensor: sunlight | fields: level, depth, type, ts Task: Retrieve value from turbidity whose depth is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060295
train
v2
Sensor network script: Node: turbidity | code: ref | fields: reading, lon, lat, value Sensor: evaporation | fields: level, lon, unit, value Task: Retrieve depth from turbidity that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060296
train
v2
Sensor network script: Node: air_quality | code: stn | fields: ts, value, depth, unit Sensor: temperature | fields: level, value, unit, type Task: Retrieve depth from air_quality that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_060297
train
v3
Sensor network script: Node: evaporation | code: thr | fields: qc, level, lon, ts Sensor: sunlight | fields: qc, value, level, depth Task: Retrieve lon from evaporation with reading above the MAX(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060298
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lat, value, lon, unit Sensor: humidity | fields: unit, depth, ts, reading Task: Get reading from soil_moisture where ts appears in humidity readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_060299
train