variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: turbidity | code: gst | fields: depth, level, lon, value Sensor: cloud_cover | fields: reading, type, qc, lon Task: Get lon from turbidity where ts appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016500
train
v2
Sensor network script: Node: turbidity | code: mst | fields: unit, type, reading, lon Sensor: evaporation | fields: qc, value, lon, unit Task: Retrieve lat from turbidity that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016501
train
v1
Sensor network script: Node: uv_index | code: gst | fields: reading, qc, level, lat Sensor: temperature | fields: qc, level, ts, value Task: Fetch depth from uv_index where depth exists in temperature sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016502
train
v3
Sensor network script: Node: turbidity | code: thr | fields: ts, reading, unit, value Sensor: evaporation | fields: reading, lat, level, depth Task: Get reading from turbidity where depth exceeds the minimum reading from evaporation for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016503
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: lon, type, level, ts Sensor: turbidity | fields: unit, ts, depth, level Task: Get level from snow_depth where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016504
train
v1
Sensor network script: Node: evaporation | code: clr | fields: depth, reading, lon, ts Sensor: soil_moisture | fields: ts, level, value, qc Task: Get value from evaporation where qc appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016505
train
v1
Sensor network script: Node: temperature | code: thr | fields: depth, qc, value, ts Sensor: humidity | fields: type, level, lat, qc Task: Retrieve lon from temperature whose type is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016506
train
v2
Sensor network script: Node: lightning | code: gst | fields: level, lat, value, qc Sensor: frost | fields: ts, lon, value, type Task: Retrieve lat from lightning that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016507
train
v3
Sensor network script: Node: frost | code: thr | fields: unit, qc, depth, level Sensor: wind_speed | fields: unit, type, lat, reading Task: Fetch lat from frost where reading is greater than the minimum of reading in wind_speed for matching ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016508
train
v3
Sensor network script: Node: drought_index | code: hub | fields: depth, level, ts, reading Sensor: evaporation | fields: value, depth, type, lon Task: Get value from drought_index where reading exceeds the count of depth from evaporation for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016509
train
v3
Sensor network script: Node: visibility | code: hub | fields: depth, ts, qc, lon Sensor: evaporation | fields: depth, ts, unit, lon Task: Get lon from visibility where value exceeds the average reading from evaporation for the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016510
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lat, ts, value, level Sensor: lightning | fields: value, lat, lon, qc Task: Get lon from soil_moisture where type appears in lightning readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016511
train
v3
Sensor network script: Node: humidity | code: gst | fields: ts, qc, lon, level Sensor: soil_moisture | fields: ts, lat, qc, depth Task: Get lat from humidity where depth exceeds the maximum value from soil_moisture for the same type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016512
train
v1
Sensor network script: Node: humidity | code: clr | fields: type, value, level, qc Sensor: temperature | fields: lon, unit, level, ts Task: Fetch value from humidity where type exists in temperature sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016513
train
v3
Sensor network script: Node: evaporation | code: clr | fields: lon, type, reading, level Sensor: sunlight | fields: unit, reading, level, value Task: Retrieve value from evaporation with depth above the AVG(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016514
train
v2
Sensor network script: Node: temperature | code: mst | fields: lat, ts, reading, lon Sensor: air_quality | fields: value, type, reading, level Task: Get depth from temperature where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016515
train
v3
Sensor network script: Node: visibility | code: mst | fields: lon, ts, reading, qc Sensor: cloud_cover | fields: ts, lon, depth, type Task: Fetch level from visibility where depth is greater than the maximum of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016516
train
v1
Sensor network script: Node: frost | code: mst | fields: type, value, qc, ts Sensor: uv_index | fields: unit, depth, type, qc Task: Get value from frost where ts appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016517
train
v1
Sensor network script: Node: sunlight | code: prt | fields: level, unit, lat, value Sensor: humidity | fields: depth, lon, type, value Task: Retrieve lat from sunlight whose ts is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016518
train
v3
Sensor network script: Node: rainfall | code: gst | fields: level, lat, unit, ts Sensor: evaporation | fields: unit, lon, qc, level Task: Get depth from rainfall where reading exceeds the total reading from evaporation for the same unit. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016519
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: lat, type, qc, value Sensor: pressure | fields: reading, depth, ts, level Task: Get level from wind_speed where qc appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016520
train
v3
Sensor network script: Node: drought_index | code: clr | fields: unit, ts, value, lon Sensor: evaporation | fields: type, level, reading, depth Task: Fetch depth from drought_index where reading is greater than the average of reading in evaporation for matching type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016521
train
v3
Sensor network script: Node: frost | code: stn | fields: qc, lon, ts, reading Sensor: pressure | fields: value, unit, lon, lat Task: Retrieve value from frost with value above the COUNT(value) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016522
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lon, ts, qc, depth Sensor: drought_index | fields: ts, unit, type, depth Task: Fetch depth from cloud_cover where unit exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016523
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lon, depth, qc, unit Sensor: wind_speed | fields: level, lon, depth, unit Task: Get lat from air_quality where qc appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016524
train
v1
Sensor network script: Node: air_quality | code: stn | fields: level, qc, type, unit Sensor: visibility | fields: depth, type, lon, lat Task: Retrieve depth from air_quality whose qc is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016525
train
v1
Sensor network script: Node: sunlight | code: mst | fields: depth, unit, type, reading Sensor: cloud_cover | fields: lat, level, depth, type Task: Fetch level from sunlight where qc exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016526
train
v1
Sensor network script: Node: dew_point | code: mst | fields: ts, value, reading, qc Sensor: pressure | fields: reading, ts, lon, unit Task: Get value from dew_point where depth appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016527
train
v1
Sensor network script: Node: pressure | code: hub | fields: reading, depth, qc, unit Sensor: temperature | fields: ts, level, lon, qc Task: Retrieve reading from pressure whose ts is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016528
train
v3
Sensor network script: Node: turbidity | code: mst | fields: lon, level, value, lat Sensor: temperature | fields: unit, reading, lat, depth Task: Retrieve lon from turbidity with reading above the COUNT(reading) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016529
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: value, qc, lat, unit Sensor: wind_speed | fields: value, level, lat, reading Task: Get lon from snow_depth where depth appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016530
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: level, reading, depth, type Sensor: soil_moisture | fields: value, type, lat, reading Task: Get level from wind_speed where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016531
train
v1
Sensor network script: Node: air_quality | code: hub | fields: ts, qc, lon, unit Sensor: evaporation | fields: type, qc, reading, lon Task: Get value from air_quality where type appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016532
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: type, depth, qc, lat Sensor: wind_speed | fields: lat, level, type, unit Task: Fetch lon from soil_moisture where type exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016533
train
v2
Sensor network script: Node: turbidity | code: gst | fields: reading, qc, type, unit Sensor: temperature | fields: qc, lon, value, type Task: Get value from turbidity where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016534
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: depth, reading, lon, value Sensor: visibility | fields: value, lon, lat, qc Task: Get depth from soil_moisture where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016535
train
v2
Sensor network script: Node: evaporation | code: stn | fields: level, qc, unit, type Sensor: dew_point | fields: lon, depth, reading, qc Task: Get level from evaporation where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016536
train
v3
Sensor network script: Node: rainfall | code: ref | fields: ts, unit, value, type Sensor: turbidity | fields: qc, value, lat, lon Task: Fetch reading from rainfall where reading is greater than the count of of value in turbidity for matching unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016537
train
v2
Sensor network script: Node: uv_index | code: thr | fields: depth, value, unit, ts Sensor: air_quality | fields: depth, level, lon, lat Task: Retrieve value from uv_index that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016538
train
v3
Sensor network script: Node: sunlight | code: clr | fields: qc, value, depth, lon Sensor: dew_point | fields: lat, depth, unit, qc Task: Get value from sunlight where depth exceeds the count of depth from dew_point for the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016539
train
v1
Sensor network script: Node: sunlight | code: mst | fields: lon, qc, depth, reading Sensor: wind_speed | fields: qc, lat, lon, level Task: Get lon from sunlight where unit appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016540
train
v2
Sensor network script: Node: air_quality | code: ref | fields: qc, value, depth, ts Sensor: drought_index | fields: lon, ts, type, unit Task: Retrieve depth from air_quality that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016541
train
v2
Sensor network script: Node: pressure | code: ref | fields: lat, depth, value, level Sensor: air_quality | fields: type, lon, ts, unit Task: Get lon from pressure where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016542
train
v3
Sensor network script: Node: visibility | code: stn | fields: unit, lon, value, depth Sensor: rainfall | fields: qc, lon, level, lat Task: Retrieve reading from visibility with reading above the MAX(value) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016543
train
v2
Sensor network script: Node: humidity | code: thr | fields: value, qc, level, lon Sensor: visibility | fields: lat, unit, depth, type Task: Fetch lon from humidity that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016544
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: lat, unit, level, value Sensor: visibility | fields: value, level, depth, ts Task: Get value from snow_depth where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016545
train
v3
Sensor network script: Node: temperature | code: gst | fields: depth, type, unit, value Sensor: humidity | fields: unit, lon, qc, type Task: Retrieve level from temperature with value above the SUM(value) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016546
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: ts, unit, qc, reading Sensor: turbidity | fields: lat, depth, lon, reading Task: Get value from snow_depth where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016547
train
v1
Sensor network script: Node: pressure | code: clr | fields: type, level, lat, ts Sensor: drought_index | fields: unit, reading, level, lat Task: Fetch level from pressure where type exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016548
train
v1
Sensor network script: Node: frost | code: thr | fields: lon, reading, lat, depth Sensor: soil_moisture | fields: type, lat, qc, reading Task: Get value from frost where depth appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016549
train
v1
Sensor network script: Node: turbidity | code: stn | fields: unit, reading, ts, level Sensor: snow_depth | fields: lat, unit, ts, reading Task: Retrieve level from turbidity whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016550
train
v3
Sensor network script: Node: pressure | code: clr | fields: level, lon, ts, depth Sensor: temperature | fields: ts, lon, unit, lat Task: Get level from pressure where reading exceeds the total value from temperature for the same qc. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016551
train
v3
Sensor network script: Node: air_quality | code: mst | fields: value, ts, reading, level Sensor: uv_index | fields: level, lat, reading, lon Task: Get reading from air_quality where value exceeds the total reading from uv_index for the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016552
train
v3
Sensor network script: Node: sunlight | code: hub | fields: ts, lon, qc, level Sensor: frost | fields: ts, qc, unit, type Task: Fetch lon from sunlight where depth is greater than the count of of reading in frost for matching qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016553
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: unit, lat, lon, depth Sensor: uv_index | fields: qc, lon, depth, type Task: Fetch value from snow_depth that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016554
train
v1
Sensor network script: Node: frost | code: prt | fields: level, type, value, lat Sensor: humidity | fields: level, depth, reading, qc Task: Get depth from frost where type appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016555
train
v2
Sensor network script: Node: turbidity | code: mst | fields: type, qc, value, ts Sensor: lightning | fields: level, lon, type, unit Task: Fetch level from turbidity that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016556
train
v2
Sensor network script: Node: air_quality | code: hub | fields: depth, reading, ts, level Sensor: dew_point | fields: reading, qc, type, depth Task: Fetch reading from air_quality that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016557
train
v1
Sensor network script: Node: drought_index | code: mst | fields: type, ts, unit, lon Sensor: evaporation | fields: lat, type, unit, lon Task: Fetch reading from drought_index where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016558
train
v3
Sensor network script: Node: lightning | code: clr | fields: qc, type, level, lat Sensor: drought_index | fields: type, value, unit, ts Task: Fetch lat from lightning where reading is greater than the total of depth in drought_index for matching depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016559
train
v3
Sensor network script: Node: humidity | code: mst | fields: qc, level, lon, lat Sensor: dew_point | fields: unit, ts, qc, lat Task: Fetch lat from humidity where reading is greater than the average of value in dew_point for matching qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016560
train
v3
Sensor network script: Node: turbidity | code: stn | fields: depth, type, reading, level Sensor: air_quality | fields: ts, unit, lon, lat Task: Fetch depth from turbidity where depth is greater than the total of depth in air_quality for matching unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016561
train
v3
Sensor network script: Node: air_quality | code: thr | fields: unit, lon, qc, depth Sensor: turbidity | fields: type, qc, depth, reading Task: Fetch depth from air_quality where depth is greater than the count of of reading in turbidity for matching qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016562
train
v2
Sensor network script: Node: rainfall | code: stn | fields: qc, reading, type, level Sensor: pressure | fields: unit, qc, type, depth Task: Fetch lon from rainfall that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016563
train
v2
Sensor network script: Node: uv_index | code: prt | fields: qc, unit, depth, value Sensor: snow_depth | fields: lat, value, qc, unit Task: Retrieve lat from uv_index that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016564
train
v1
Sensor network script: Node: humidity | code: ref | fields: level, lon, value, lat Sensor: turbidity | fields: ts, level, qc, reading Task: Retrieve level from humidity whose ts is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016565
train
v3
Sensor network script: Node: turbidity | code: clr | fields: unit, level, reading, lat Sensor: frost | fields: qc, ts, depth, level Task: Retrieve depth from turbidity with value above the COUNT(value) of frost readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016566
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: lat, value, unit, ts Sensor: uv_index | fields: depth, lon, reading, ts Task: Retrieve lat from cloud_cover with value above the COUNT(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016567
train
v2
Sensor network script: Node: temperature | code: gst | fields: lat, qc, unit, ts Sensor: visibility | fields: qc, type, lat, lon Task: Fetch lon from temperature that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016568
train
v3
Sensor network script: Node: temperature | code: ref | fields: level, value, depth, unit Sensor: visibility | fields: depth, unit, reading, ts Task: Retrieve level from temperature with reading above the MAX(value) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016569
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: reading, lon, value, ts Sensor: air_quality | fields: value, lon, qc, unit Task: Get reading from soil_moisture where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016570
train
v3
Sensor network script: Node: humidity | code: gst | fields: qc, level, reading, ts Sensor: temperature | fields: depth, type, unit, qc Task: Get lat from humidity where depth exceeds the count of reading from temperature for the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016571
train
v1
Sensor network script: Node: frost | code: stn | fields: level, depth, qc, reading Sensor: lightning | fields: value, reading, depth, level Task: Get depth from frost where type appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016572
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: ts, lon, value, qc Sensor: evaporation | fields: depth, lat, ts, type Task: Fetch value from snow_depth that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016573
train
v2
Sensor network script: Node: turbidity | code: stn | fields: reading, lat, lon, value Sensor: pressure | fields: reading, depth, type, lat Task: Get depth from turbidity where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016574
train
v2
Sensor network script: Node: drought_index | code: mst | fields: lon, reading, lat, ts Sensor: frost | fields: ts, unit, level, type Task: Retrieve depth from drought_index that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016575
train
v1
Sensor network script: Node: rainfall | code: ref | fields: type, unit, lat, ts Sensor: turbidity | fields: value, ts, level, unit Task: Fetch lat from rainfall where unit exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016576
train
v2
Sensor network script: Node: temperature | code: thr | fields: type, qc, ts, unit Sensor: soil_moisture | fields: depth, unit, qc, lat Task: Get lon from temperature where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016577
train
v1
Sensor network script: Node: rainfall | code: gst | fields: lon, level, unit, depth Sensor: pressure | fields: depth, lon, qc, lat Task: Fetch reading from rainfall where type exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016578
train
v1
Sensor network script: Node: dew_point | code: thr | fields: type, reading, depth, lat Sensor: frost | fields: lat, qc, ts, type Task: Retrieve lon from dew_point whose qc is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016579
train
v2
Sensor network script: Node: pressure | code: gst | fields: lat, value, qc, depth Sensor: cloud_cover | fields: qc, unit, depth, type Task: Retrieve reading from pressure that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016580
train
v2
Sensor network script: Node: temperature | code: stn | fields: unit, value, level, depth Sensor: evaporation | fields: lat, value, lon, unit Task: Retrieve reading from temperature that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016581
train
v2
Sensor network script: Node: air_quality | code: prt | fields: level, depth, reading, ts Sensor: evaporation | fields: reading, depth, lat, unit Task: Fetch reading from air_quality that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "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_016582
train
v2
Sensor network script: Node: pressure | code: prt | fields: lon, depth, value, unit Sensor: evaporation | fields: lat, level, qc, value Task: Retrieve reading from pressure that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016583
train
v2
Sensor network script: Node: lightning | code: clr | fields: depth, lon, unit, value Sensor: frost | fields: level, qc, lon, type Task: Get level from lightning where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016584
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: value, unit, depth, ts Sensor: rainfall | fields: depth, lon, unit, lat Task: Retrieve level from soil_moisture with depth above the MAX(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016585
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: lat, unit, depth, level Sensor: visibility | fields: lon, lat, depth, qc Task: Fetch lat from snow_depth where depth exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016586
train
v3
Sensor network script: Node: frost | code: gst | fields: depth, level, qc, lat Sensor: cloud_cover | fields: type, qc, depth, level Task: Retrieve reading from frost with value above the AVG(value) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016587
train
v1
Sensor network script: Node: air_quality | code: thr | fields: depth, ts, qc, unit Sensor: rainfall | fields: lat, value, lon, ts Task: Retrieve lat from air_quality whose ts is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016588
train
v2
Sensor network script: Node: lightning | code: stn | fields: level, value, unit, ts Sensor: visibility | fields: lat, unit, depth, qc Task: Get lat from lightning where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016589
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: qc, lat, lon, depth Sensor: air_quality | fields: type, level, depth, lat Task: Retrieve depth from cloud_cover whose qc is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016590
train
v3
Sensor network script: Node: rainfall | code: stn | fields: qc, lon, lat, type Sensor: visibility | fields: ts, lat, lon, level Task: Retrieve reading from rainfall with value above the MIN(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016591
train
v2
Sensor network script: Node: evaporation | code: mst | fields: level, ts, type, depth Sensor: cloud_cover | fields: unit, level, value, reading Task: Get value from evaporation where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016592
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, ts, depth, lat Sensor: wind_speed | fields: reading, unit, lon, level Task: Fetch lat from rainfall where reading is greater than the total of depth in wind_speed for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016593
train
v3
Sensor network script: Node: humidity | code: ref | fields: level, depth, qc, reading Sensor: temperature | fields: reading, value, lat, depth Task: Fetch value from humidity where depth is greater than the maximum of depth in temperature for matching depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016594
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: lon, lat, ts, level Sensor: soil_moisture | fields: unit, lat, level, value Task: Get value from cloud_cover where reading exceeds the count of depth from soil_moisture for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016595
train
v2
Sensor network script: Node: sunlight | code: prt | fields: unit, value, reading, lon Sensor: lightning | fields: qc, level, depth, unit Task: Retrieve depth from sunlight that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016596
train
v1
Sensor network script: Node: rainfall | code: mst | fields: value, reading, level, qc Sensor: soil_moisture | fields: level, lat, depth, type Task: Fetch lat from rainfall where ts exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016597
train
v2
Sensor network script: Node: frost | code: prt | fields: value, qc, level, lon Sensor: cloud_cover | fields: unit, lon, depth, type Task: Fetch lon from frost that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016598
train
v2
Sensor network script: Node: drought_index | code: clr | fields: reading, unit, lon, type Sensor: evaporation | fields: value, ts, level, lon Task: Retrieve level from drought_index that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016599
train