variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: visibility | code: clr | fields: lat, qc, value, reading Sensor: wind_speed | fields: reading, lat, level, depth Task: Retrieve value from visibility that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006300
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: type, reading, level, unit Sensor: rainfall | fields: depth, ts, reading, lon Task: Retrieve value from wind_speed with depth above the MAX(reading) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006301
train
v1
Sensor network script: Node: visibility | code: prt | fields: type, value, reading, depth Sensor: snow_depth | fields: reading, lat, unit, lon Task: Fetch reading from visibility where type exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006302
train
v1
Sensor network script: Node: turbidity | code: mst | fields: ts, level, lon, type Sensor: drought_index | fields: type, value, level, lon Task: Retrieve level from turbidity whose unit is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006303
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: value, lon, depth, lat Sensor: rainfall | fields: type, value, ts, qc Task: Get reading from snow_depth where ts appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006304
train
v2
Sensor network script: Node: drought_index | code: prt | fields: depth, lat, unit, qc Sensor: evaporation | fields: reading, lon, type, qc Task: Retrieve reading from drought_index that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006305
train
v1
Sensor network script: Node: humidity | code: ref | fields: qc, level, ts, value Sensor: dew_point | fields: lon, ts, lat, reading Task: Get lat from humidity where unit appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006306
train
v2
Sensor network script: Node: visibility | code: stn | fields: qc, unit, lat, value Sensor: temperature | fields: lon, qc, unit, ts Task: Fetch lon from visibility that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006307
train
v1
Sensor network script: Node: evaporation | code: prt | fields: value, level, depth, type Sensor: sunlight | fields: reading, unit, level, qc Task: Get level from evaporation where unit appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006308
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: reading, value, depth, qc Sensor: uv_index | fields: value, ts, reading, qc Task: Fetch lon from cloud_cover where depth exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006309
train
v2
Sensor network script: Node: uv_index | code: hub | fields: lon, depth, reading, level Sensor: soil_moisture | fields: lon, level, depth, type Task: Get level from uv_index where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006310
train
v1
Sensor network script: Node: pressure | code: clr | fields: reading, type, unit, ts Sensor: temperature | fields: type, reading, level, lon Task: Retrieve value from pressure whose qc is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006311
train
v2
Sensor network script: Node: frost | code: prt | fields: value, ts, unit, lon Sensor: soil_moisture | fields: level, lon, reading, unit Task: Get lat from frost where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006312
train
v1
Sensor network script: Node: pressure | code: hub | fields: value, lon, level, ts Sensor: humidity | fields: unit, value, lon, qc Task: Get reading from pressure where unit appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006313
train
v1
Sensor network script: Node: evaporation | code: stn | fields: reading, unit, lat, level Sensor: turbidity | fields: lon, reading, level, depth Task: Retrieve lon from evaporation whose unit is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006314
train
v2
Sensor network script: Node: lightning | code: hub | fields: qc, reading, type, value Sensor: temperature | fields: unit, ts, lon, qc Task: Retrieve depth from lightning that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006315
train
v1
Sensor network script: Node: uv_index | code: gst | fields: level, qc, value, type Sensor: humidity | fields: reading, depth, lat, lon Task: Get lon from uv_index where depth appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006316
train
v3
Sensor network script: Node: turbidity | code: thr | fields: level, ts, qc, lat Sensor: lightning | fields: unit, reading, type, lat Task: Fetch reading from turbidity where reading is greater than the average of reading in lightning for matching depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006317
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: unit, value, level, depth Sensor: pressure | fields: lon, reading, depth, lat Task: Fetch reading from soil_moisture where depth is greater than the average of value in pressure for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006318
train
v1
Sensor network script: Node: turbidity | code: stn | fields: ts, value, lat, unit Sensor: rainfall | fields: depth, unit, ts, type Task: Fetch lat from turbidity where qc exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006319
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: qc, value, ts, depth Sensor: evaporation | fields: lat, depth, qc, type Task: Fetch depth from cloud_cover where value is greater than the count of of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006320
train
v3
Sensor network script: Node: visibility | code: stn | fields: type, ts, depth, value Sensor: soil_moisture | fields: level, unit, lon, lat Task: Fetch lat from visibility where reading is greater than the average of reading in soil_moisture for matching ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006321
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, qc, unit, type Sensor: drought_index | fields: lon, type, qc, ts Task: Fetch depth from rainfall where reading is greater than the average of reading in drought_index for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006322
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: reading, level, type, ts Sensor: humidity | fields: qc, ts, unit, type Task: Get lon from wind_speed where unit appears in humidity readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006323
train
v1
Sensor network script: Node: dew_point | code: prt | fields: unit, reading, lat, ts Sensor: visibility | fields: type, depth, reading, level Task: Get depth from dew_point where qc appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006324
train
v3
Sensor network script: Node: sunlight | code: prt | fields: value, reading, lon, lat Sensor: dew_point | fields: reading, ts, depth, value Task: Fetch value from sunlight where depth is greater than the total of reading in dew_point for matching type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006325
train
v3
Sensor network script: Node: dew_point | code: thr | fields: level, unit, qc, depth Sensor: rainfall | fields: value, ts, depth, reading Task: Fetch lat from dew_point where reading is greater than the maximum of reading in rainfall for matching unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006326
train
v3
Sensor network script: Node: air_quality | code: thr | fields: unit, lon, type, reading Sensor: evaporation | fields: value, depth, lat, ts Task: Get lat from air_quality where depth exceeds the maximum reading from evaporation for the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006327
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: lat, qc, reading, level Sensor: lightning | fields: qc, reading, lat, ts Task: Retrieve value from cloud_cover with depth above the MIN(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006328
train
v1
Sensor network script: Node: visibility | code: gst | fields: qc, depth, ts, type Sensor: cloud_cover | fields: lon, level, unit, lat Task: Get depth from visibility where unit appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006329
train
v2
Sensor network script: Node: pressure | code: clr | fields: unit, lat, type, reading Sensor: dew_point | fields: qc, value, unit, depth Task: Retrieve depth from pressure that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006330
train
v1
Sensor network script: Node: drought_index | code: mst | fields: reading, qc, unit, lat Sensor: dew_point | fields: level, ts, lon, qc Task: Get reading from drought_index where type appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006331
train
v1
Sensor network script: Node: lightning | code: thr | fields: qc, reading, unit, type Sensor: visibility | fields: reading, lat, ts, unit Task: Retrieve value from lightning whose type is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006332
train
v3
Sensor network script: Node: temperature | code: clr | fields: unit, qc, type, reading Sensor: humidity | fields: level, reading, lat, qc Task: Retrieve value from temperature with depth above the AVG(depth) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006333
train
v3
Sensor network script: Node: uv_index | code: clr | fields: depth, reading, ts, unit Sensor: temperature | fields: qc, ts, reading, level Task: Retrieve value from uv_index with reading above the MAX(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006334
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lat, unit, lon, value Sensor: snow_depth | fields: depth, lat, reading, lon 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="hub"), 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": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006335
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, ts, level, depth Sensor: air_quality | fields: reading, lat, qc, ts Task: Get reading from cloud_cover where type appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006336
train
v1
Sensor network script: Node: dew_point | code: mst | fields: type, unit, depth, lon Sensor: soil_moisture | fields: depth, unit, type, lon Task: Retrieve value from dew_point whose unit is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="unit", 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", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006337
train
v1
Sensor network script: Node: visibility | code: prt | fields: value, reading, level, type Sensor: drought_index | fields: level, depth, qc, lon Task: Get level from visibility where ts appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006338
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: lon, type, value, reading Sensor: dew_point | fields: ts, type, lat, value Task: Retrieve lat from snow_depth that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006339
train
v2
Sensor network script: Node: drought_index | code: hub | fields: reading, level, ts, qc Sensor: temperature | fields: qc, reading, lat, value Task: Get lon from drought_index where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006340
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: type, value, level, ts Sensor: snow_depth | fields: qc, level, depth, type Task: Fetch depth from wind_speed that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006341
train
v2
Sensor network script: Node: humidity | code: prt | fields: lat, ts, type, qc Sensor: turbidity | fields: type, qc, depth, level Task: Retrieve reading from humidity that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006342
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: level, lat, reading, unit Sensor: pressure | fields: lat, reading, unit, type Task: Retrieve value from wind_speed that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006343
train
v3
Sensor network script: Node: rainfall | code: prt | fields: qc, reading, ts, unit Sensor: temperature | fields: level, lat, ts, value Task: Get reading from rainfall where value exceeds the average depth from temperature for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006344
train
v1
Sensor network script: Node: temperature | code: stn | fields: qc, value, lon, level Sensor: uv_index | fields: qc, lon, level, value Task: Get lon from temperature where ts appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006345
train
v3
Sensor network script: Node: humidity | code: ref | fields: reading, type, lon, unit Sensor: soil_moisture | fields: depth, reading, value, unit Task: Get depth from humidity where value exceeds the average value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006346
train
v2
Sensor network script: Node: visibility | code: ref | fields: depth, level, ts, lon Sensor: uv_index | fields: qc, level, lat, reading Task: Fetch lat from visibility that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006347
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: lon, ts, qc, value Sensor: temperature | fields: qc, level, reading, lon Task: Fetch lon from cloud_cover that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006348
train
v1
Sensor network script: Node: turbidity | code: thr | fields: ts, value, unit, depth Sensor: sunlight | fields: lon, depth, unit, lat Task: Get depth from turbidity where unit appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "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_006349
train
v1
Sensor network script: Node: temperature | code: ref | fields: depth, qc, level, type Sensor: drought_index | fields: lat, value, unit, type Task: Fetch value from temperature where depth exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006350
train
v1
Sensor network script: Node: lightning | code: clr | fields: type, ts, level, depth Sensor: temperature | fields: depth, lon, lat, ts Task: Get reading from lightning where qc appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006351
train
v3
Sensor network script: Node: visibility | code: thr | fields: reading, lat, depth, level Sensor: drought_index | fields: reading, level, unit, value Task: Get lon from visibility where reading exceeds the count of depth from drought_index for the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006352
train
v1
Sensor network script: Node: air_quality | code: clr | fields: level, value, ts, lat Sensor: dew_point | fields: unit, lat, value, ts Task: Fetch level from air_quality where depth exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006353
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: reading, qc, level, lon Sensor: uv_index | fields: reading, unit, level, type Task: Retrieve lon from cloud_cover whose type is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006354
train
v1
Sensor network script: Node: pressure | code: thr | fields: lat, qc, level, depth Sensor: visibility | fields: lat, qc, type, ts Task: Get value from pressure where depth appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006355
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: type, lat, unit, value Sensor: snow_depth | fields: reading, lat, value, ts Task: Retrieve reading from soil_moisture with depth above the MAX(value) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006356
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: lat, unit, level, lon Sensor: cloud_cover | fields: level, reading, ts, lat Task: Retrieve level from soil_moisture with value above the AVG(value) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006357
train
v3
Sensor network script: Node: sunlight | code: ref | fields: value, reading, lon, type Sensor: rainfall | fields: unit, qc, type, level Task: Retrieve lon from sunlight with value above the COUNT(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006358
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: depth, type, ts, level Sensor: frost | fields: depth, ts, qc, type Task: Fetch level from soil_moisture where depth is greater than the total of reading in frost for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006359
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: level, unit, type, lon Sensor: dew_point | fields: value, type, reading, lon Task: Fetch depth from wind_speed that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006360
train
v3
Sensor network script: Node: lightning | code: ref | fields: value, ts, unit, reading Sensor: wind_speed | fields: level, ts, value, depth Task: Fetch level from lightning where depth is greater than the total of value in wind_speed for matching unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006361
train
v2
Sensor network script: Node: sunlight | code: stn | fields: unit, qc, value, ts Sensor: turbidity | fields: lat, reading, depth, qc Task: Get reading from sunlight where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006362
train
v1
Sensor network script: Node: air_quality | code: ref | fields: unit, depth, lon, level Sensor: soil_moisture | fields: lat, reading, type, lon Task: Get lon from air_quality where ts appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006363
train
v3
Sensor network script: Node: frost | code: ref | fields: value, qc, type, ts Sensor: lightning | fields: qc, level, unit, depth Task: Get lat from frost where value exceeds the minimum reading from lightning for the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006364
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: level, ts, value, lat Sensor: wind_speed | fields: unit, value, lat, level Task: Retrieve depth from soil_moisture that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006365
train
v2
Sensor network script: Node: rainfall | code: mst | fields: reading, depth, type, lat Sensor: snow_depth | fields: ts, lat, type, level Task: Get depth from rainfall where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006366
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: level, qc, value, depth Sensor: turbidity | fields: lon, unit, ts, value Task: Fetch reading from wind_speed where reading is greater than the maximum of reading in turbidity for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006367
train
v2
Sensor network script: Node: lightning | code: ref | fields: qc, unit, type, reading Sensor: evaporation | fields: ts, value, qc, lat Task: Get level from lightning where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006368
train
v1
Sensor network script: Node: humidity | code: gst | fields: unit, depth, lon, qc Sensor: pressure | fields: qc, level, lat, ts Task: Get lat from humidity where ts appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006369
train
v2
Sensor network script: Node: pressure | code: clr | fields: value, ts, reading, lon Sensor: snow_depth | fields: level, lat, value, qc Task: Get lat from pressure where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006370
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, ts, level, lon Sensor: snow_depth | fields: value, reading, lon, type Task: Retrieve lat from drought_index with value above the SUM(value) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006371
train
v1
Sensor network script: Node: dew_point | code: ref | fields: qc, lon, value, depth Sensor: snow_depth | fields: lon, qc, reading, depth Task: Fetch lat from dew_point where type exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006372
train
v3
Sensor network script: Node: visibility | code: gst | fields: level, value, depth, lon Sensor: dew_point | fields: reading, depth, level, ts Task: Fetch depth from visibility where reading is greater than the count of of reading in dew_point for matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006373
train
v2
Sensor network script: Node: drought_index | code: prt | fields: depth, unit, value, reading Sensor: visibility | fields: type, unit, level, qc Task: Get lon from drought_index where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "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_006374
train
v2
Sensor network script: Node: rainfall | code: prt | fields: reading, qc, lon, level Sensor: soil_moisture | fields: unit, depth, type, lat Task: Fetch reading from rainfall that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006375
train
v2
Sensor network script: Node: turbidity | code: ref | fields: depth, lon, unit, value Sensor: lightning | fields: value, reading, lat, depth Task: Get lat from turbidity where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006376
train
v2
Sensor network script: Node: uv_index | code: ref | fields: level, lat, lon, value Sensor: temperature | fields: lat, lon, level, value Task: Retrieve value from uv_index that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006377
train
v3
Sensor network script: Node: frost | code: stn | fields: lon, reading, type, unit Sensor: evaporation | fields: type, value, depth, reading Task: Retrieve level from frost with value above the MIN(depth) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006378
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lat, reading, depth, unit Sensor: visibility | fields: qc, lat, lon, type Task: Fetch lat from uv_index where value is greater than the total of value in visibility for matching ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006379
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: value, type, reading, ts Sensor: snow_depth | fields: type, ts, reading, lat Task: Get lon from soil_moisture where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006380
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: value, unit, reading, type Sensor: humidity | fields: ts, reading, lat, type Task: Retrieve lat from cloud_cover with depth above the MIN(reading) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006381
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: ts, value, depth, level Sensor: dew_point | fields: lat, reading, level, type Task: Fetch lon from snow_depth where depth is greater than the count of of reading in dew_point for matching type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006382
train
v3
Sensor network script: Node: rainfall | code: prt | fields: qc, level, reading, ts Sensor: cloud_cover | fields: ts, value, type, qc Task: Fetch reading from rainfall where reading is greater than the maximum of reading in cloud_cover for matching depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006383
train
v1
Sensor network script: Node: rainfall | code: hub | fields: qc, lon, value, lat Sensor: visibility | fields: unit, qc, ts, value Task: Get value from rainfall where qc appears in visibility readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006384
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: ts, value, unit, level Sensor: drought_index | fields: qc, type, lon, value Task: Retrieve reading from cloud_cover that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006385
train
v1
Sensor network script: Node: sunlight | code: mst | fields: type, depth, ts, lat Sensor: temperature | fields: type, value, ts, reading Task: Fetch lat from sunlight where unit exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006386
train
v3
Sensor network script: Node: air_quality | code: ref | fields: lon, reading, value, unit Sensor: frost | fields: type, reading, unit, depth Task: Retrieve level from air_quality with depth above the MIN(reading) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006387
train
v2
Sensor network script: Node: turbidity | code: hub | fields: reading, lon, depth, lat Sensor: drought_index | fields: qc, reading, lon, lat Task: Get lon from turbidity where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006388
train
v2
Sensor network script: Node: uv_index | code: gst | fields: level, value, unit, lon Sensor: rainfall | fields: type, lon, level, depth Task: Fetch lat from uv_index that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006389
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: lon, unit, type, ts Sensor: evaporation | fields: ts, value, lon, lat Task: Fetch reading from snow_depth where qc exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006390
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: lat, level, depth, unit Sensor: rainfall | fields: level, lon, type, lat Task: Retrieve reading from snow_depth whose unit is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006391
train
v3
Sensor network script: Node: lightning | code: hub | fields: lat, type, reading, ts Sensor: drought_index | fields: value, lon, qc, type Task: Get reading from lightning where depth exceeds the count of reading from drought_index for the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006392
train
v3
Sensor network script: Node: lightning | code: prt | fields: type, unit, lon, reading Sensor: visibility | fields: lon, reading, ts, value Task: Fetch value from lightning where depth is greater than the total of depth in visibility for matching ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006393
train
v1
Sensor network script: Node: turbidity | code: mst | fields: value, qc, unit, lon Sensor: evaporation | fields: type, unit, ts, depth Task: Fetch level from turbidity where ts exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006394
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, lat, type, reading Sensor: pressure | fields: reading, depth, lat, lon Task: Retrieve lat from humidity with value above the MIN(value) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006395
train
v2
Sensor network script: Node: sunlight | code: prt | fields: ts, lon, depth, reading Sensor: humidity | fields: qc, lon, reading, depth Task: Retrieve depth from sunlight that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006396
train
v1
Sensor network script: Node: air_quality | code: thr | fields: lat, type, reading, unit Sensor: turbidity | fields: type, level, unit, ts Task: Retrieve reading from air_quality whose unit is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006397
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: type, depth, qc, value Sensor: pressure | fields: level, ts, qc, depth Task: Fetch lon from soil_moisture where value is greater than the total of value in pressure for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006398
train
v3
Sensor network script: Node: evaporation | code: stn | fields: qc, type, lat, value Sensor: lightning | fields: reading, unit, value, type Task: Get lon from evaporation where reading exceeds the total reading from lightning for the same ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006399
train