variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: humidity | code: mst | fields: unit, value, lat, level Sensor: pressure | fields: lat, level, lon, qc Task: Get level from humidity where depth exceeds the maximum depth from pressure for the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015200
train
v3
Sensor network script: Node: temperature | code: hub | fields: lon, value, level, qc Sensor: air_quality | fields: level, depth, lat, type Task: Get lon from temperature where reading exceeds the minimum value from air_quality for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015201
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: value, unit, lon, lat Sensor: soil_moisture | fields: qc, lat, unit, type Task: Get level from cloud_cover where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015202
train
v1
Sensor network script: Node: evaporation | code: ref | fields: reading, unit, type, qc Sensor: uv_index | fields: qc, lat, unit, value Task: Retrieve depth from evaporation whose depth is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015203
train
v3
Sensor network script: Node: uv_index | code: hub | fields: depth, unit, lat, qc Sensor: frost | fields: value, depth, reading, lat Task: Get value from uv_index where value exceeds the average reading from frost for the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015204
train
v2
Sensor network script: Node: frost | code: mst | fields: lat, unit, qc, depth Sensor: snow_depth | fields: ts, unit, reading, lat Task: Fetch reading from frost that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015205
train
v1
Sensor network script: Node: dew_point | code: ref | fields: value, qc, reading, lat Sensor: air_quality | fields: unit, value, lon, lat Task: Fetch lon from dew_point where qc exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015206
train
v2
Sensor network script: Node: sunlight | code: hub | fields: unit, value, lat, reading Sensor: air_quality | fields: level, qc, value, lat Task: Get lon from sunlight where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015207
train
v2
Sensor network script: Node: temperature | code: ref | fields: reading, lon, unit, depth Sensor: soil_moisture | fields: reading, unit, type, depth Task: Get depth from temperature where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015208
train
v1
Sensor network script: Node: sunlight | code: clr | fields: lon, value, depth, unit Sensor: cloud_cover | fields: ts, type, depth, value Task: Retrieve lat from sunlight whose qc is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015209
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: lat, type, lon, value Sensor: sunlight | fields: depth, value, reading, qc Task: Fetch depth from wind_speed where unit exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015210
train
v1
Sensor network script: Node: uv_index | code: thr | fields: value, unit, depth, lon Sensor: snow_depth | fields: type, lon, qc, reading Task: Get lat from uv_index where qc appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015211
train
v2
Sensor network script: Node: visibility | code: stn | fields: lon, depth, unit, lat Sensor: evaporation | fields: unit, value, lat, lon Task: Fetch reading from visibility that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015212
train
v1
Sensor network script: Node: uv_index | code: prt | fields: level, type, qc, depth Sensor: temperature | fields: depth, type, ts, level Task: Fetch lon from uv_index where qc exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015213
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: unit, lat, value, level Sensor: frost | fields: depth, lon, value, level Task: Retrieve reading from cloud_cover that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015214
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: ts, value, lon, depth Sensor: snow_depth | fields: depth, level, type, reading Task: Get level from soil_moisture where depth exceeds the maximum depth from snow_depth for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015215
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: level, ts, unit, qc Sensor: humidity | fields: lon, level, reading, value Task: Fetch value from soil_moisture that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015216
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lat, depth, value, type Sensor: cloud_cover | fields: depth, unit, type, reading Task: Retrieve reading from soil_moisture with value above the SUM(value) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015217
train
v1
Sensor network script: Node: pressure | code: ref | fields: value, lon, unit, ts Sensor: wind_speed | fields: qc, level, value, reading Task: Fetch value from pressure where ts exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015218
train
v2
Sensor network script: Node: air_quality | code: stn | fields: depth, reading, value, lat Sensor: uv_index | fields: ts, reading, lat, level Task: Get level from air_quality where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015219
train
v2
Sensor network script: Node: turbidity | code: hub | fields: qc, value, ts, type Sensor: temperature | fields: ts, lat, value, depth Task: Get level from turbidity where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015220
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lon, ts, qc, value Sensor: rainfall | fields: value, depth, qc, type Task: Fetch depth from soil_moisture where value is greater than the maximum of depth in rainfall for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015221
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, lat, lon, unit Sensor: humidity | fields: unit, qc, ts, lat Task: Retrieve lat from rainfall with value above the MIN(value) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015222
train
v3
Sensor network script: Node: pressure | code: mst | fields: reading, lat, depth, lon Sensor: snow_depth | fields: reading, type, ts, unit Task: Get depth from pressure where depth exceeds the average depth from snow_depth for the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015223
train
v3
Sensor network script: Node: humidity | code: prt | fields: lon, value, type, unit Sensor: lightning | fields: level, qc, depth, unit Task: Retrieve reading from humidity with value above the MAX(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015224
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: value, qc, level, unit Sensor: sunlight | fields: lat, reading, type, unit Task: Get lat from cloud_cover where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015225
train
v2
Sensor network script: Node: pressure | code: thr | fields: level, value, reading, unit Sensor: humidity | fields: reading, qc, depth, lon Task: Get value from pressure where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015226
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: reading, type, qc, depth Sensor: sunlight | fields: qc, lat, ts, level Task: Fetch lon from snow_depth where depth exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015227
train
v3
Sensor network script: Node: visibility | code: thr | fields: ts, depth, level, lon Sensor: uv_index | fields: type, reading, qc, depth Task: Retrieve level from visibility with value above the COUNT(value) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015228
train
v3
Sensor network script: Node: air_quality | code: prt | fields: type, depth, lon, value Sensor: lightning | fields: ts, type, reading, lon Task: Get lon from air_quality where value exceeds the minimum depth from lightning for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015229
train
v2
Sensor network script: Node: air_quality | code: stn | fields: reading, lon, lat, level Sensor: visibility | fields: lat, level, unit, type Task: Fetch reading from air_quality that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015230
train
v2
Sensor network script: Node: dew_point | code: prt | fields: qc, level, ts, reading Sensor: pressure | fields: qc, value, depth, reading Task: Retrieve lat from dew_point that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015231
train
v3
Sensor network script: Node: pressure | code: ref | fields: depth, ts, lat, level Sensor: dew_point | fields: type, reading, level, depth Task: Fetch value from pressure where reading is greater than the total of value in dew_point for matching qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015232
train
v1
Sensor network script: Node: air_quality | code: mst | fields: depth, reading, value, lon Sensor: drought_index | fields: qc, unit, type, reading Task: Retrieve lon from air_quality whose ts is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015233
train
v1
Sensor network script: Node: pressure | code: clr | fields: unit, lon, depth, qc Sensor: temperature | fields: reading, lat, level, depth Task: Get lat from pressure where ts appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015234
train
v3
Sensor network script: Node: visibility | code: clr | fields: reading, lat, unit, value Sensor: drought_index | fields: level, lat, lon, depth Task: Retrieve reading from visibility with reading above the MIN(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015235
train
v2
Sensor network script: Node: visibility | code: stn | fields: value, type, lat, level Sensor: dew_point | fields: lat, level, ts, lon Task: Retrieve value from visibility that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015236
train
v3
Sensor network script: Node: evaporation | code: stn | fields: level, type, depth, unit Sensor: temperature | fields: reading, lat, value, depth Task: Fetch depth from evaporation where depth is greater than the minimum of depth in temperature for matching unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015237
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: value, ts, unit, level Sensor: visibility | fields: ts, level, qc, value Task: Fetch lon from wind_speed that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015238
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: level, value, lon, lat Sensor: soil_moisture | fields: depth, unit, level, lat Task: Get lon from cloud_cover where ts appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015239
train
v3
Sensor network script: Node: dew_point | code: gst | fields: value, level, unit, reading Sensor: turbidity | fields: unit, qc, reading, type Task: Retrieve reading from dew_point with reading above the COUNT(value) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015240
train
v3
Sensor network script: Node: humidity | code: ref | fields: type, ts, qc, level Sensor: uv_index | fields: level, lon, qc, value Task: Retrieve reading from humidity with value above the COUNT(reading) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015241
train
v1
Sensor network script: Node: dew_point | code: thr | fields: ts, type, lon, value Sensor: snow_depth | fields: unit, type, depth, ts Task: Fetch lat from dew_point where qc exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015242
train
v3
Sensor network script: Node: pressure | code: clr | fields: qc, lon, lat, reading Sensor: drought_index | fields: ts, lon, type, qc Task: Retrieve level from pressure with value above the AVG(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015243
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: type, level, lon, qc Sensor: temperature | fields: lat, ts, depth, lon Task: Retrieve lon from soil_moisture that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015244
train
v1
Sensor network script: Node: lightning | code: ref | fields: lon, qc, unit, level Sensor: humidity | fields: lon, value, level, reading Task: Retrieve value from lightning whose type is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015245
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: depth, lat, qc, type Sensor: soil_moisture | fields: reading, level, qc, value Task: Retrieve value from cloud_cover whose qc is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015246
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: qc, ts, unit, type Sensor: wind_speed | fields: qc, type, value, unit Task: Get value from snow_depth where type appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015247
train
v2
Sensor network script: Node: sunlight | code: hub | fields: value, ts, type, reading Sensor: air_quality | fields: ts, depth, reading, level Task: Fetch level from sunlight that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015248
train
v2
Sensor network script: Node: sunlight | code: clr | fields: lat, level, value, qc Sensor: temperature | fields: type, depth, unit, ts Task: Fetch depth from sunlight that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015249
train
v1
Sensor network script: Node: sunlight | code: thr | fields: ts, lat, depth, unit Sensor: uv_index | fields: lon, level, value, reading Task: Retrieve level from sunlight whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015250
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: ts, unit, lat, type Sensor: humidity | fields: depth, ts, reading, unit Task: Fetch lon from soil_moisture that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015251
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: unit, lon, reading, ts Sensor: lightning | fields: ts, unit, lon, depth Task: Retrieve value from snow_depth whose ts is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015252
train
v2
Sensor network script: Node: humidity | code: hub | fields: lat, lon, type, depth Sensor: drought_index | fields: level, ts, qc, value Task: Retrieve lon from humidity that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015253
train
v1
Sensor network script: Node: evaporation | code: thr | fields: lon, value, unit, level Sensor: frost | fields: type, unit, qc, reading Task: Retrieve value from evaporation whose depth is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015254
train
v1
Sensor network script: Node: lightning | code: prt | fields: unit, type, reading, level Sensor: evaporation | fields: lon, reading, level, unit Task: Retrieve level from lightning whose type is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015255
train
v3
Sensor network script: Node: temperature | code: thr | fields: lon, type, qc, value Sensor: evaporation | fields: reading, depth, lat, unit Task: Get value from temperature where reading exceeds the count of reading from evaporation for the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015256
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: reading, value, ts, level Sensor: drought_index | fields: ts, unit, lon, depth Task: Fetch level from snow_depth that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015257
train
v3
Sensor network script: Node: sunlight | code: thr | fields: unit, ts, value, lat Sensor: wind_speed | fields: unit, depth, ts, lat Task: Fetch lat from sunlight where reading is greater than the average of depth in wind_speed for matching unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015258
train
v1
Sensor network script: Node: drought_index | code: hub | fields: qc, lat, type, level Sensor: rainfall | fields: ts, lon, level, depth Task: Get reading from drought_index where unit appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015259
train
v1
Sensor network script: Node: humidity | code: stn | fields: level, value, reading, lon Sensor: uv_index | fields: type, reading, level, unit Task: Get depth from humidity where depth appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015260
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: lon, ts, value, reading Sensor: dew_point | fields: ts, type, level, reading Task: Retrieve depth from cloud_cover with depth above the COUNT(reading) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015261
train
v1
Sensor network script: Node: lightning | code: thr | fields: lon, value, ts, level Sensor: rainfall | fields: lat, level, qc, ts Task: Retrieve depth from lightning whose ts is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015262
train
v1
Sensor network script: Node: frost | code: thr | fields: type, ts, value, level Sensor: soil_moisture | fields: reading, value, lat, level Task: Get value from frost where depth appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015263
train
v3
Sensor network script: Node: visibility | code: mst | fields: unit, depth, lat, level Sensor: temperature | fields: reading, ts, depth, lat Task: Retrieve lat from visibility with value above the AVG(reading) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015264
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: level, type, value, depth Sensor: frost | fields: qc, reading, lon, unit Task: Fetch depth from snow_depth where depth is greater than the average of depth in frost for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015265
train
v3
Sensor network script: Node: lightning | code: prt | fields: reading, value, unit, depth Sensor: uv_index | fields: value, lat, lon, qc Task: Retrieve reading from lightning with value above the MAX(value) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015266
train
v1
Sensor network script: Node: visibility | code: thr | fields: level, reading, ts, value Sensor: sunlight | fields: unit, qc, type, ts Task: Fetch lat from visibility where ts exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015267
train
v2
Sensor network script: Node: sunlight | code: ref | fields: lat, lon, ts, unit Sensor: dew_point | fields: lat, type, unit, qc Task: Fetch lon from sunlight that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015268
train
v2
Sensor network script: Node: temperature | code: ref | fields: value, level, reading, unit Sensor: pressure | fields: value, qc, depth, ts Task: Fetch value from temperature that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015269
train
v3
Sensor network script: Node: air_quality | code: ref | fields: lat, depth, ts, lon Sensor: drought_index | fields: unit, lat, qc, level Task: Fetch value from air_quality where reading is greater than the maximum of depth in drought_index for matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015270
train
v1
Sensor network script: Node: lightning | code: stn | fields: reading, lon, qc, depth Sensor: snow_depth | fields: reading, value, lon, depth Task: Retrieve lat from lightning whose unit is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015271
train
v1
Sensor network script: Node: turbidity | code: stn | fields: lon, ts, lat, type Sensor: air_quality | fields: ts, lat, value, type Task: Get reading from turbidity where type appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015272
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: unit, depth, lat, value Sensor: evaporation | fields: type, level, ts, lat Task: Get lat from soil_moisture where type appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015273
train
v1
Sensor network script: Node: lightning | code: hub | fields: unit, reading, value, depth Sensor: dew_point | fields: depth, ts, lat, unit Task: Fetch depth from lightning where depth exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015274
train
v2
Sensor network script: Node: sunlight | code: mst | fields: qc, ts, lon, lat Sensor: air_quality | fields: qc, lon, ts, level Task: Retrieve lon from sunlight that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015275
train
v3
Sensor network script: Node: visibility | code: clr | fields: depth, ts, unit, level Sensor: lightning | fields: type, lon, unit, qc Task: Fetch lon from visibility where depth is greater than the maximum of reading in lightning for matching ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015276
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: level, lat, value, reading Sensor: dew_point | fields: unit, depth, reading, lat Task: Get reading from snow_depth where value exceeds the count of depth from dew_point for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "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_015277
train
v3
Sensor network script: Node: frost | code: prt | fields: depth, qc, level, lon Sensor: temperature | fields: qc, level, value, lat Task: Get depth from frost where depth exceeds the total value from temperature for the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015278
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, lat, type, ts Sensor: turbidity | fields: depth, value, ts, qc Task: Get level from air_quality where ts appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015279
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lon, type, reading, value Sensor: turbidity | fields: reading, qc, ts, level Task: Retrieve lat from dew_point with depth above the SUM(value) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015280
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: level, lat, lon, unit Sensor: temperature | fields: unit, depth, lat, value Task: Fetch lat from wind_speed where unit exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015281
train
v1
Sensor network script: Node: temperature | code: thr | fields: lon, lat, reading, depth Sensor: air_quality | fields: level, lat, reading, lon Task: Fetch reading from temperature where ts exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015282
train
v3
Sensor network script: Node: rainfall | code: gst | fields: qc, lat, depth, unit Sensor: cloud_cover | fields: lon, lat, unit, ts Task: Get lon from rainfall where depth exceeds the maximum depth from cloud_cover for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015283
train
v1
Sensor network script: Node: frost | code: prt | fields: reading, lat, value, type Sensor: temperature | fields: depth, reading, unit, type Task: Retrieve value from frost whose unit is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015284
train
v1
Sensor network script: Node: evaporation | code: clr | fields: lat, reading, level, value Sensor: frost | fields: lon, level, qc, unit Task: Retrieve lat from evaporation whose depth is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015285
train
v2
Sensor network script: Node: air_quality | code: prt | fields: unit, ts, qc, depth Sensor: humidity | fields: depth, type, level, value Task: Get depth from air_quality where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015286
train
v3
Sensor network script: Node: visibility | code: prt | fields: reading, lat, type, ts Sensor: dew_point | fields: qc, ts, type, depth Task: Get level from visibility where value exceeds the minimum reading from dew_point for the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", 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": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015287
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: level, ts, lat, qc Sensor: sunlight | fields: value, level, lat, type Task: Get depth from cloud_cover where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015288
train
v3
Sensor network script: Node: humidity | code: hub | fields: type, unit, value, ts Sensor: air_quality | fields: level, ts, value, type Task: Fetch depth from humidity where reading is greater than the count of of value in air_quality for matching ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015289
train
v2
Sensor network script: Node: turbidity | code: gst | fields: qc, depth, value, lat Sensor: dew_point | fields: level, lon, type, depth Task: Fetch depth from turbidity that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015290
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: value, reading, type, unit Sensor: evaporation | fields: level, qc, unit, depth Task: Retrieve reading from snow_depth whose ts is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015291
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: lon, lat, value, reading Sensor: wind_speed | fields: depth, unit, reading, level Task: Get lon from snow_depth where depth exceeds the count of depth from wind_speed for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015292
train
v2
Sensor network script: Node: uv_index | code: gst | fields: type, value, qc, ts Sensor: visibility | fields: unit, level, lat, value Task: Fetch reading from uv_index that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015293
train
v3
Sensor network script: Node: air_quality | code: gst | fields: ts, level, depth, unit Sensor: rainfall | fields: lat, lon, ts, value Task: Retrieve reading from air_quality with reading above the COUNT(depth) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015294
train
v2
Sensor network script: Node: frost | code: prt | fields: depth, type, lat, lon Sensor: turbidity | fields: value, type, reading, depth Task: Fetch lon from frost that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015295
train
v2
Sensor network script: Node: evaporation | code: ref | fields: ts, lon, type, lat Sensor: cloud_cover | fields: lat, ts, level, depth Task: Retrieve lon from evaporation that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015296
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lat, depth, reading, ts Sensor: uv_index | fields: depth, lon, reading, lat Task: Get lat from snow_depth where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015297
train
v1
Sensor network script: Node: drought_index | code: thr | fields: level, unit, ts, lat Sensor: soil_moisture | fields: reading, level, depth, value Task: Fetch lon from drought_index where qc exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015298
train
v2
Sensor network script: Node: drought_index | code: hub | fields: unit, lon, reading, lat Sensor: soil_moisture | fields: unit, lon, reading, depth Task: Fetch depth from drought_index that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015299
train