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: rainfall | code: ref | fields: ts, lat, level, depth Sensor: sunlight | fields: type, lat, reading, level Task: Fetch lon from rainfall that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003300
train
v3
Sensor network script: Node: lightning | code: gst | fields: value, depth, unit, ts Sensor: sunlight | fields: lon, lat, value, unit Task: Retrieve value from lightning with reading above the MIN(value) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003301
train
v2
Sensor network script: Node: dew_point | code: mst | fields: reading, depth, ts, unit Sensor: visibility | fields: ts, unit, lat, lon Task: Fetch depth from dew_point that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003302
train
v2
Sensor network script: Node: humidity | code: thr | fields: ts, unit, lon, qc Sensor: soil_moisture | fields: value, ts, reading, type Task: Get level from humidity where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003303
train
v1
Sensor network script: Node: frost | code: ref | fields: ts, lon, depth, lat Sensor: evaporation | fields: unit, ts, depth, level Task: Fetch value from frost where qc exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003304
train
v1
Sensor network script: Node: temperature | code: stn | fields: reading, unit, depth, lon Sensor: snow_depth | fields: lon, value, type, reading Task: Fetch lon from temperature where depth exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003305
train
v1
Sensor network script: Node: humidity | code: hub | fields: level, qc, lat, unit Sensor: rainfall | fields: unit, ts, qc, lat Task: Get depth from humidity where unit appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003306
train
v1
Sensor network script: Node: humidity | code: clr | fields: unit, type, ts, qc Sensor: rainfall | fields: lon, ts, unit, level Task: Get lon from humidity where type appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003307
train
v3
Sensor network script: Node: air_quality | code: prt | fields: lon, type, reading, lat Sensor: snow_depth | fields: value, ts, depth, reading Task: Fetch reading from air_quality where value is greater than the total of reading in snow_depth for matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003308
train
v2
Sensor network script: Node: air_quality | code: gst | fields: reading, type, depth, lon Sensor: soil_moisture | fields: type, reading, depth, level Task: Get lon from air_quality where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003309
train
v3
Sensor network script: Node: temperature | code: thr | fields: qc, value, ts, unit Sensor: sunlight | fields: unit, lon, lat, value Task: Get depth from temperature where value exceeds the maximum reading from sunlight for the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003310
train
v3
Sensor network script: Node: pressure | code: thr | fields: value, depth, level, unit Sensor: uv_index | fields: lon, level, reading, ts Task: Retrieve lat from pressure with reading above the COUNT(depth) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003311
train
v1
Sensor network script: Node: lightning | code: mst | fields: ts, lat, reading, value Sensor: wind_speed | fields: value, type, lon, level Task: Get level from lightning where type appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003312
train
v1
Sensor network script: Node: uv_index | code: mst | fields: value, depth, ts, unit Sensor: sunlight | fields: lon, level, reading, qc Task: Fetch level from uv_index where qc exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003313
train
v2
Sensor network script: Node: frost | code: gst | fields: level, lon, depth, reading Sensor: uv_index | fields: lat, depth, qc, reading Task: Retrieve reading from frost that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003314
train
v2
Sensor network script: Node: dew_point | code: clr | fields: ts, lat, value, level Sensor: humidity | fields: type, level, reading, unit Task: Get lon from dew_point where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003315
train
v1
Sensor network script: Node: evaporation | code: prt | fields: unit, ts, reading, lat Sensor: visibility | fields: lon, level, reading, value Task: Fetch value from evaporation where qc exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003316
train
v3
Sensor network script: Node: uv_index | code: ref | fields: qc, level, unit, lon Sensor: evaporation | fields: type, depth, level, ts Task: Retrieve lat from uv_index with depth above the MIN(reading) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003317
train
v3
Sensor network script: Node: frost | code: clr | fields: qc, depth, ts, lon Sensor: snow_depth | fields: lat, depth, ts, qc Task: Retrieve level from frost with depth above the COUNT(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003318
train
v2
Sensor network script: Node: visibility | code: thr | fields: value, level, qc, ts Sensor: evaporation | fields: ts, lon, depth, reading Task: Get value from visibility where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003319
train
v3
Sensor network script: Node: visibility | code: prt | fields: value, ts, reading, level Sensor: snow_depth | fields: value, unit, ts, lat Task: Get reading from visibility where reading exceeds the maximum value from snow_depth for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003320
train
v3
Sensor network script: Node: turbidity | code: clr | fields: unit, lon, qc, ts Sensor: evaporation | fields: ts, qc, value, unit Task: Get lon from turbidity where reading exceeds the maximum reading from evaporation for the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003321
train
v2
Sensor network script: Node: lightning | code: ref | fields: unit, reading, level, lon Sensor: cloud_cover | fields: reading, lon, level, value Task: Fetch depth from lightning that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003322
train
v2
Sensor network script: Node: evaporation | code: ref | fields: lon, qc, value, ts Sensor: snow_depth | fields: reading, qc, value, type Task: Retrieve value from evaporation that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003323
train
v3
Sensor network script: Node: rainfall | code: stn | fields: qc, level, lon, unit Sensor: snow_depth | fields: ts, depth, reading, value Task: Get lon from rainfall where reading exceeds the average value from snow_depth for the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003324
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: depth, level, unit, qc Sensor: sunlight | fields: depth, reading, type, lat Task: Fetch value from wind_speed where reading is greater than the minimum of depth in sunlight for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003325
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, lon, type, value Sensor: dew_point | fields: lat, lon, ts, reading Task: Retrieve lon from pressure that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003326
train
v2
Sensor network script: Node: rainfall | code: gst | fields: type, ts, reading, unit Sensor: pressure | fields: unit, lat, value, qc Task: Fetch value from rainfall that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003327
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: type, ts, depth, reading Sensor: soil_moisture | fields: lat, qc, depth, ts Task: Retrieve depth from cloud_cover that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003328
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: lat, value, unit, lon Sensor: sunlight | fields: qc, lat, unit, type Task: Get lat from snow_depth where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003329
train
v2
Sensor network script: Node: rainfall | code: thr | fields: depth, value, ts, reading Sensor: turbidity | fields: type, qc, lon, lat Task: Get lat from rainfall where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003330
train
v2
Sensor network script: Node: lightning | code: ref | fields: type, lat, qc, lon Sensor: evaporation | fields: lat, value, depth, level Task: Fetch reading from lightning that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003331
train
v3
Sensor network script: Node: uv_index | code: thr | fields: type, depth, lon, unit Sensor: wind_speed | fields: value, lat, depth, lon Task: Retrieve depth from uv_index with depth above the MAX(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003332
train
v1
Sensor network script: Node: evaporation | code: stn | fields: type, value, qc, unit Sensor: lightning | fields: type, lat, lon, level Task: Get value from evaporation where qc appears in lightning readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003333
train
v1
Sensor network script: Node: evaporation | code: hub | fields: reading, lat, unit, qc Sensor: visibility | fields: unit, type, lon, ts Task: Retrieve value from evaporation whose qc is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "evaporation", "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_003334
train
v1
Sensor network script: Node: frost | code: ref | fields: lat, value, level, unit Sensor: uv_index | fields: ts, depth, level, type Task: Retrieve level from frost whose ts is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003335
train
v2
Sensor network script: Node: humidity | code: mst | fields: lon, level, reading, ts Sensor: wind_speed | fields: reading, ts, lon, qc Task: Fetch level from humidity that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003336
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: reading, lon, ts, level Sensor: air_quality | fields: qc, reading, type, level Task: Retrieve depth from wind_speed that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003337
train
v3
Sensor network script: Node: temperature | code: clr | fields: ts, unit, level, lat Sensor: cloud_cover | fields: ts, qc, lat, level Task: Retrieve value from temperature with value above the AVG(reading) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003338
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: level, value, ts, reading Sensor: snow_depth | fields: level, reading, depth, lon Task: Fetch level from wind_speed that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003339
train
v2
Sensor network script: Node: drought_index | code: hub | fields: lon, ts, level, reading Sensor: snow_depth | fields: type, depth, reading, lat Task: Retrieve lon from drought_index that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "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_003340
train
v2
Sensor network script: Node: evaporation | code: hub | fields: value, qc, type, unit Sensor: sunlight | fields: ts, qc, unit, depth Task: Fetch reading from evaporation that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003341
train
v1
Sensor network script: Node: sunlight | code: prt | fields: qc, reading, ts, depth Sensor: wind_speed | fields: depth, ts, lon, reading Task: Fetch lat from sunlight where ts exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003342
train
v3
Sensor network script: Node: pressure | code: ref | fields: lat, reading, level, value Sensor: temperature | fields: lon, ts, unit, qc Task: Fetch lat from pressure where depth is greater than the count of of depth in temperature for matching type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003343
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: unit, value, type, level Sensor: lightning | fields: qc, lon, lat, reading Task: Get lat from wind_speed where depth exceeds the average reading from lightning for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003344
train
v2
Sensor network script: Node: turbidity | code: mst | fields: level, reading, qc, ts Sensor: soil_moisture | fields: unit, lat, type, value Task: Retrieve lon from turbidity that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003345
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: depth, value, ts, unit Sensor: pressure | fields: lat, value, reading, type Task: Get reading from cloud_cover where reading exceeds the count of reading from pressure for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003346
train
v1
Sensor network script: Node: pressure | code: hub | fields: qc, type, lon, depth Sensor: frost | fields: lat, unit, value, reading Task: Get value from pressure where unit appears in frost readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003347
train
v1
Sensor network script: Node: evaporation | code: hub | fields: reading, lat, value, unit Sensor: dew_point | fields: lon, lat, ts, type Task: Retrieve lat from evaporation whose ts is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003348
train
v3
Sensor network script: Node: humidity | code: clr | fields: type, lon, lat, depth Sensor: soil_moisture | fields: lat, ts, qc, value Task: Get depth from humidity where reading exceeds the maximum value from soil_moisture for the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003349
train
v3
Sensor network script: Node: air_quality | code: mst | fields: lat, lon, depth, reading Sensor: lightning | fields: qc, lat, depth, value Task: Fetch lat from air_quality where reading is greater than the average of value in lightning for matching type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003350
train
v1
Sensor network script: Node: air_quality | code: ref | fields: level, lon, depth, ts Sensor: lightning | fields: level, lon, depth, ts Task: Retrieve depth from air_quality whose ts is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003351
train
v1
Sensor network script: Node: temperature | code: thr | fields: qc, ts, lon, lat Sensor: sunlight | fields: ts, lon, reading, type Task: Get reading from temperature where ts appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003352
train
v1
Sensor network script: Node: rainfall | code: ref | fields: reading, qc, lat, unit Sensor: air_quality | fields: qc, unit, lat, depth Task: Fetch depth from rainfall where ts exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003353
train
v3
Sensor network script: Node: temperature | code: prt | fields: lon, value, qc, depth Sensor: snow_depth | fields: lat, ts, qc, lon Task: Retrieve level from temperature with depth above the MAX(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003354
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: ts, reading, unit, depth Sensor: evaporation | fields: level, reading, qc, ts Task: Get lon from wind_speed where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003355
train
v3
Sensor network script: Node: sunlight | code: hub | fields: depth, qc, value, ts Sensor: snow_depth | fields: reading, lon, qc, depth Task: Retrieve reading from sunlight with reading above the AVG(depth) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003356
train
v3
Sensor network script: Node: temperature | code: hub | fields: lon, depth, level, value Sensor: lightning | fields: qc, type, lat, reading Task: Get level from temperature where depth exceeds the average value from lightning for the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "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_003357
train
v2
Sensor network script: Node: temperature | code: stn | fields: unit, qc, type, depth Sensor: uv_index | fields: depth, reading, unit, lon Task: Get level from temperature where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "temperature", "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_003358
train
v2
Sensor network script: Node: temperature | code: mst | fields: value, type, unit, lon Sensor: drought_index | fields: depth, type, qc, lat Task: Retrieve lat from temperature that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003359
train
v2
Sensor network script: Node: dew_point | code: clr | fields: ts, lat, level, depth Sensor: wind_speed | fields: reading, lat, lon, qc Task: Fetch depth from dew_point that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003360
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: unit, qc, depth, lat Sensor: visibility | fields: type, unit, reading, ts Task: Fetch level from wind_speed where depth is greater than the average of value in visibility for matching type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003361
train
v1
Sensor network script: Node: drought_index | code: ref | fields: lat, unit, level, lon Sensor: cloud_cover | fields: value, ts, reading, lon Task: Get depth from drought_index where type appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003362
train
v3
Sensor network script: Node: temperature | code: clr | fields: value, lon, level, ts Sensor: uv_index | fields: unit, level, ts, reading Task: Get lon from temperature where value exceeds the average value from uv_index for the same unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003363
train
v1
Sensor network script: Node: frost | code: gst | fields: qc, lon, type, reading Sensor: soil_moisture | fields: depth, qc, value, unit Task: Get value from frost where unit appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003364
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, depth, qc, ts Sensor: wind_speed | fields: unit, reading, qc, lat Task: Fetch lon from humidity where depth is greater than the total of reading in wind_speed for matching depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003365
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: value, level, qc, lat Sensor: air_quality | fields: depth, reading, lat, unit Task: Get value from wind_speed where reading exceeds the maximum reading from air_quality for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003366
train
v2
Sensor network script: Node: evaporation | code: hub | fields: reading, unit, lon, value Sensor: frost | fields: depth, value, reading, type Task: Retrieve reading from evaporation that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003367
train
v3
Sensor network script: Node: drought_index | code: thr | fields: ts, value, level, lon Sensor: snow_depth | fields: value, depth, type, lat Task: Fetch level from drought_index where value is greater than the minimum of depth in snow_depth for matching unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003368
train
v2
Sensor network script: Node: air_quality | code: mst | fields: type, qc, reading, lat Sensor: pressure | fields: type, depth, level, lon Task: Retrieve reading from air_quality that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003369
train
v3
Sensor network script: Node: drought_index | code: mst | fields: ts, type, lon, unit Sensor: wind_speed | fields: type, level, depth, ts Task: Retrieve lat from drought_index with reading above the COUNT(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003370
train
v2
Sensor network script: Node: pressure | code: thr | fields: reading, depth, unit, lat Sensor: frost | fields: value, ts, lat, lon Task: Retrieve depth from pressure that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003371
train
v1
Sensor network script: Node: evaporation | code: gst | fields: unit, type, reading, ts Sensor: soil_moisture | fields: ts, depth, lat, lon Task: Get level from evaporation where unit appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003372
train
v2
Sensor network script: Node: evaporation | code: gst | fields: type, lon, value, depth Sensor: visibility | fields: ts, unit, depth, qc Task: Fetch reading from evaporation that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003373
train
v3
Sensor network script: Node: sunlight | code: gst | fields: lon, type, level, value Sensor: pressure | fields: type, lat, unit, lon Task: Fetch value from sunlight where reading is greater than the maximum of value in pressure for matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003374
train
v1
Sensor network script: Node: evaporation | code: mst | fields: lon, qc, type, reading Sensor: wind_speed | fields: ts, unit, level, lon Task: Fetch level from evaporation where depth exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003375
train
v1
Sensor network script: Node: air_quality | code: clr | fields: level, lon, lat, depth Sensor: sunlight | fields: lat, type, qc, unit Task: Get reading from air_quality where depth appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003376
train
v2
Sensor network script: Node: uv_index | code: gst | fields: depth, value, lat, qc Sensor: drought_index | fields: level, ts, type, unit Task: Get lat from uv_index where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003377
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: level, ts, depth, value Sensor: frost | fields: lon, reading, ts, level Task: Fetch lon from soil_moisture that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003378
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: reading, value, qc, ts Sensor: pressure | fields: type, unit, ts, lat Task: Get lon from cloud_cover where depth exceeds the total reading from pressure for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003379
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: unit, type, qc, level Sensor: uv_index | fields: qc, level, lat, depth Task: Retrieve lon from cloud_cover with reading above the MAX(value) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003380
train
v2
Sensor network script: Node: sunlight | code: prt | fields: ts, value, qc, lon Sensor: wind_speed | fields: lat, value, ts, depth Task: Retrieve lon from sunlight that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003381
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lat, ts, unit, reading Sensor: sunlight | fields: depth, type, unit, ts Task: Get value from soil_moisture where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003382
train
v3
Sensor network script: Node: frost | code: stn | fields: lat, reading, unit, ts Sensor: pressure | fields: level, depth, ts, type Task: Fetch reading from frost where value is greater than the total of reading in pressure for matching unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003383
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: qc, unit, lat, value Sensor: air_quality | fields: depth, lon, reading, unit Task: Fetch depth from cloud_cover that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003384
train
v3
Sensor network script: Node: sunlight | code: hub | fields: qc, reading, depth, unit Sensor: evaporation | fields: lat, reading, lon, type Task: Fetch depth from sunlight where depth is greater than the minimum of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003385
train
v1
Sensor network script: Node: frost | code: stn | fields: lat, depth, qc, level Sensor: lightning | fields: ts, level, lon, depth Task: Retrieve value from frost whose type is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003386
train
v2
Sensor network script: Node: dew_point | code: ref | fields: unit, qc, value, lon Sensor: evaporation | fields: qc, level, ts, lon Task: Fetch lat from dew_point that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003387
train
v3
Sensor network script: Node: turbidity | code: stn | fields: depth, unit, reading, ts Sensor: visibility | fields: value, unit, qc, lat Task: Fetch reading from turbidity where value is greater than the average of value in visibility for matching depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003388
train
v2
Sensor network script: Node: evaporation | code: ref | fields: value, type, lon, reading Sensor: wind_speed | fields: value, lat, lon, ts Task: Fetch reading from evaporation that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003389
train
v3
Sensor network script: Node: drought_index | code: stn | fields: value, lon, qc, type Sensor: temperature | fields: value, type, depth, qc Task: Retrieve level from drought_index with reading above the AVG(depth) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003390
train
v2
Sensor network script: Node: humidity | code: stn | fields: reading, lon, unit, depth Sensor: turbidity | fields: level, ts, type, qc Task: Fetch level from humidity that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003391
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lon, lat, level, unit Sensor: air_quality | fields: reading, ts, value, level Task: Retrieve value from snow_depth that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003392
train
v2
Sensor network script: Node: humidity | code: ref | fields: unit, type, lat, value Sensor: pressure | fields: level, depth, reading, lon Task: Retrieve lon from humidity that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003393
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: type, level, lon, value Sensor: drought_index | fields: ts, value, lat, depth Task: Retrieve lon from soil_moisture whose type is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003394
train
v2
Sensor network script: Node: frost | code: mst | fields: unit, level, ts, depth Sensor: visibility | fields: qc, depth, unit, type Task: Retrieve lat from frost that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_003395
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: value, qc, level, depth Sensor: drought_index | fields: qc, value, depth, ts Task: Fetch depth from soil_moisture where ts exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003396
train
v3
Sensor network script: Node: lightning | code: stn | fields: level, ts, reading, qc Sensor: drought_index | fields: ts, value, level, qc Task: Fetch value from lightning where value is greater than the count of of depth in drought_index for matching unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003397
train
v3
Sensor network script: Node: temperature | code: mst | fields: ts, type, lon, unit Sensor: frost | fields: reading, depth, type, ts Task: Fetch lat from temperature where reading is greater than the minimum of value in frost for matching ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003398
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: reading, value, qc, unit Sensor: humidity | fields: ts, lon, level, type Task: Fetch depth from soil_moisture where depth is greater than the average of value in humidity for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_003399
train