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: pressure | code: stn | fields: depth, type, unit, reading Sensor: turbidity | fields: lon, unit, lat, ts Task: Retrieve lat from pressure whose ts is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074000
train
v3
Sensor network script: Node: evaporation | code: thr | fields: level, type, qc, lon Sensor: snow_depth | fields: ts, lon, unit, type Task: Get level from evaporation where reading exceeds the count of reading from snow_depth for the same qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074001
train
v3
Sensor network script: Node: lightning | code: stn | fields: lat, type, qc, depth Sensor: dew_point | fields: type, level, lon, reading Task: Fetch level from lightning where value is greater than the count of of value in dew_point for matching type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074002
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: reading, lat, qc, depth Sensor: visibility | fields: lat, depth, level, unit Task: Fetch lat from cloud_cover where type exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074003
train
v2
Sensor network script: Node: evaporation | code: stn | fields: depth, unit, level, lat Sensor: sunlight | fields: unit, reading, value, ts Task: Retrieve depth from evaporation that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074004
train
v2
Sensor network script: Node: drought_index | code: stn | fields: depth, qc, lon, reading Sensor: snow_depth | fields: lat, reading, value, level Task: Fetch lon from drought_index that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074005
train
v2
Sensor network script: Node: drought_index | code: ref | fields: value, type, unit, reading Sensor: humidity | fields: ts, level, lat, lon Task: Fetch lon from drought_index that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074006
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: unit, lon, level, reading Sensor: turbidity | fields: value, qc, type, lon Task: Get level from wind_speed where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074007
train
v3
Sensor network script: Node: drought_index | code: ref | fields: qc, unit, level, lon Sensor: temperature | fields: lon, lat, value, reading Task: Fetch reading from drought_index where reading is greater than the count of of depth in temperature for matching qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074008
train
v1
Sensor network script: Node: pressure | code: hub | fields: type, reading, qc, unit Sensor: cloud_cover | fields: ts, lat, qc, level Task: Get lat from pressure where ts appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074009
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: level, qc, value, lat Sensor: dew_point | fields: type, ts, level, qc Task: Fetch lat from wind_speed where depth is greater than the minimum of depth in dew_point for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074010
train
v1
Sensor network script: Node: uv_index | code: hub | fields: lat, unit, type, qc Sensor: dew_point | fields: ts, depth, lat, level Task: Fetch level from uv_index where ts exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074011
train
v3
Sensor network script: Node: humidity | code: hub | fields: ts, level, unit, lon Sensor: visibility | fields: lat, unit, qc, type Task: Retrieve reading from humidity with value above the MAX(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074012
train
v2
Sensor network script: Node: humidity | code: mst | fields: qc, value, depth, level Sensor: turbidity | fields: lon, ts, level, lat Task: Get lat from humidity where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074013
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, type, value, depth Sensor: sunlight | fields: type, unit, ts, lon Task: Retrieve reading from lightning with depth above the SUM(value) of sunlight readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074014
train
v1
Sensor network script: Node: sunlight | code: clr | fields: value, reading, qc, unit Sensor: humidity | fields: level, lat, type, depth Task: Fetch lat from sunlight where ts exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074015
train
v1
Sensor network script: Node: sunlight | code: stn | fields: level, lat, ts, qc Sensor: visibility | fields: unit, lat, level, depth Task: Get lat from sunlight where depth appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074016
train
v2
Sensor network script: Node: evaporation | code: mst | fields: value, reading, lon, ts Sensor: humidity | fields: depth, unit, lon, level Task: Get value from evaporation where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074017
train
v1
Sensor network script: Node: sunlight | code: clr | fields: reading, unit, lat, qc Sensor: evaporation | fields: type, level, lon, value Task: Retrieve reading from sunlight whose type is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074018
train
v1
Sensor network script: Node: drought_index | code: gst | fields: level, lon, reading, lat Sensor: temperature | fields: value, lat, type, qc Task: Get depth from drought_index where qc appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074019
train
v1
Sensor network script: Node: evaporation | code: mst | fields: depth, value, ts, lat Sensor: frost | fields: depth, lat, lon, type Task: Retrieve level from evaporation whose depth is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074020
train
v3
Sensor network script: Node: humidity | code: thr | fields: type, reading, lat, unit Sensor: cloud_cover | fields: qc, depth, lat, ts Task: Get reading from humidity where reading exceeds the maximum value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074021
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lat, reading, value, level Sensor: visibility | fields: ts, depth, type, lat Task: Get reading from snow_depth where reading exceeds the total reading from visibility for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074022
train
v2
Sensor network script: Node: drought_index | code: clr | fields: depth, unit, lon, lat Sensor: rainfall | fields: qc, level, unit, depth Task: Fetch value from drought_index that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074023
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lat, qc, depth, value Sensor: frost | fields: depth, qc, ts, reading Task: Fetch level from uv_index where type exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074024
train
v1
Sensor network script: Node: sunlight | code: stn | fields: reading, value, type, lon Sensor: frost | fields: lat, value, unit, ts Task: Retrieve depth from sunlight whose qc is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074025
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: ts, level, depth, type Sensor: visibility | fields: type, value, ts, reading Task: Get level from snow_depth where depth appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074026
train
v2
Sensor network script: Node: rainfall | code: stn | fields: ts, reading, lat, lon Sensor: sunlight | fields: level, unit, lon, reading Task: Fetch level from rainfall that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074027
train
v1
Sensor network script: Node: evaporation | code: stn | fields: ts, lat, lon, qc Sensor: lightning | fields: qc, ts, unit, lat Task: Get level from evaporation where qc appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074028
train
v1
Sensor network script: Node: air_quality | code: prt | fields: ts, depth, type, value Sensor: humidity | fields: lon, ts, reading, qc Task: Retrieve reading from air_quality whose type is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074029
train
v3
Sensor network script: Node: uv_index | code: mst | fields: level, value, ts, qc Sensor: dew_point | fields: depth, reading, qc, type Task: Retrieve lon from uv_index with value above the AVG(value) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074030
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, value, lon, level Sensor: evaporation | fields: lat, type, lon, depth Task: Fetch lat from sunlight where qc exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074031
train
v2
Sensor network script: Node: visibility | code: mst | fields: qc, value, lon, type Sensor: pressure | fields: qc, ts, lat, reading Task: Retrieve depth from visibility that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074032
train
v2
Sensor network script: Node: drought_index | code: hub | fields: depth, reading, qc, level Sensor: evaporation | fields: level, qc, depth, lat Task: Fetch lon from drought_index that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074033
train
v1
Sensor network script: Node: visibility | code: ref | fields: type, reading, level, value Sensor: dew_point | fields: level, qc, reading, type Task: Get lon from visibility where depth appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074034
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: type, lon, depth, value Sensor: snow_depth | fields: ts, depth, lon, value Task: Retrieve depth from cloud_cover whose depth is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074035
train
v1
Sensor network script: Node: frost | code: hub | fields: qc, depth, value, unit Sensor: soil_moisture | fields: reading, type, ts, lon Task: Retrieve reading from frost whose ts is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074036
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, ts, lon, depth Sensor: sunlight | fields: lat, lon, ts, reading Task: Get lat from dew_point where depth appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074037
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: level, type, ts, qc Sensor: rainfall | fields: type, value, unit, lon Task: Get lat from wind_speed where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074038
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, qc, level, type Sensor: temperature | fields: type, level, depth, unit Task: Retrieve value from soil_moisture whose type is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074039
train
v2
Sensor network script: Node: pressure | code: stn | fields: lat, depth, unit, reading Sensor: snow_depth | fields: lon, lat, reading, type Task: Get lat from pressure where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074040
train
v2
Sensor network script: Node: lightning | code: mst | fields: value, reading, level, unit Sensor: visibility | fields: reading, ts, value, type Task: Retrieve depth from lightning that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074041
train
v2
Sensor network script: Node: drought_index | code: gst | fields: depth, reading, unit, value Sensor: dew_point | fields: unit, level, ts, value Task: Get lon from drought_index where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074042
train
v1
Sensor network script: Node: pressure | code: prt | fields: qc, unit, reading, depth Sensor: rainfall | fields: reading, unit, lat, ts Task: Get depth from pressure where qc appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074043
train
v2
Sensor network script: Node: temperature | code: thr | fields: level, reading, lat, ts Sensor: uv_index | fields: reading, depth, qc, ts Task: Get level from temperature where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074044
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: unit, level, lat, depth Sensor: uv_index | fields: reading, level, lon, depth Task: Retrieve reading from soil_moisture with depth above the SUM(reading) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074045
train
v2
Sensor network script: Node: humidity | code: gst | fields: type, lon, depth, reading Sensor: air_quality | fields: ts, lon, level, qc Task: Fetch level from humidity that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074046
train
v2
Sensor network script: Node: evaporation | code: gst | fields: depth, qc, lat, level Sensor: humidity | fields: lat, value, depth, level Task: Retrieve level from evaporation that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074047
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: lat, unit, level, lon Sensor: snow_depth | fields: unit, reading, level, lat Task: Get lon from wind_speed where reading exceeds the count of depth from snow_depth for the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074048
train
v1
Sensor network script: Node: visibility | code: gst | fields: reading, depth, level, unit Sensor: frost | fields: type, value, lon, reading Task: Get level from visibility where ts appears in frost readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074049
train
v3
Sensor network script: Node: lightning | code: gst | fields: type, value, unit, qc Sensor: air_quality | fields: level, lat, depth, qc Task: Fetch value from lightning where value is greater than the maximum of value in air_quality for matching type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074050
train
v1
Sensor network script: Node: visibility | code: prt | fields: lat, qc, reading, type Sensor: temperature | fields: level, lon, reading, lat Task: Fetch depth from visibility where ts exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074051
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: value, depth, type, lon Sensor: cloud_cover | fields: unit, lon, lat, type Task: Retrieve depth from snow_depth with value above the SUM(value) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074052
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: qc, unit, level, depth Sensor: dew_point | fields: lat, ts, unit, depth Task: Fetch reading from wind_speed where qc exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074053
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: ts, type, lat, reading Sensor: humidity | fields: unit, lon, ts, type Task: Retrieve lat from snow_depth whose qc is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074054
train
v3
Sensor network script: Node: rainfall | code: thr | fields: ts, lon, lat, unit Sensor: drought_index | fields: reading, lon, type, ts Task: Get reading from rainfall where reading exceeds the total value from drought_index for the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074055
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: lon, ts, value, depth Sensor: temperature | fields: lat, level, unit, qc Task: Fetch depth from soil_moisture where qc exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074056
train
v1
Sensor network script: Node: humidity | code: prt | fields: qc, reading, ts, type Sensor: visibility | fields: lon, depth, type, unit Task: Get lon from humidity where depth appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074057
train
v3
Sensor network script: Node: lightning | code: prt | fields: depth, ts, value, level Sensor: cloud_cover | fields: lat, level, lon, type Task: Fetch depth from lightning where reading is greater than the count of of reading in cloud_cover for matching qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074058
train
v2
Sensor network script: Node: humidity | code: hub | fields: type, reading, value, depth Sensor: pressure | fields: unit, type, lat, lon Task: Fetch reading from humidity that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074059
train
v1
Sensor network script: Node: air_quality | code: gst | fields: value, qc, depth, ts Sensor: cloud_cover | fields: ts, unit, lat, level Task: Get level from air_quality where type appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074060
train
v3
Sensor network script: Node: humidity | code: stn | fields: depth, qc, type, reading Sensor: frost | fields: value, reading, type, qc Task: Retrieve reading from humidity with reading above the MIN(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074061
train
v3
Sensor network script: Node: dew_point | code: prt | fields: value, qc, level, lat Sensor: turbidity | fields: lat, ts, lon, qc Task: Get level from dew_point where reading exceeds the average depth from turbidity for the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074062
train
v3
Sensor network script: Node: rainfall | code: ref | fields: depth, qc, type, lat Sensor: cloud_cover | fields: value, qc, unit, depth Task: Retrieve reading from rainfall with reading above the MIN(reading) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074063
train
v2
Sensor network script: Node: rainfall | code: prt | fields: reading, lon, type, value Sensor: wind_speed | fields: lon, type, lat, value Task: Retrieve level from rainfall that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074064
train
v3
Sensor network script: Node: pressure | code: thr | fields: level, lon, type, ts Sensor: snow_depth | fields: level, value, unit, depth Task: Retrieve lat from pressure with value above the MAX(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074065
train
v3
Sensor network script: Node: sunlight | code: prt | fields: depth, ts, level, lat Sensor: frost | fields: lon, lat, ts, type Task: Retrieve value from sunlight with reading above the SUM(depth) of frost readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074066
train
v3
Sensor network script: Node: dew_point | code: hub | fields: reading, type, lat, qc Sensor: temperature | fields: lon, depth, reading, unit Task: Retrieve lat from dew_point with value above the MAX(reading) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074067
train
v2
Sensor network script: Node: pressure | code: ref | fields: lat, type, depth, qc Sensor: uv_index | fields: lat, value, type, ts Task: Get value from pressure where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074068
train
v3
Sensor network script: Node: pressure | code: ref | fields: reading, lat, lon, type Sensor: drought_index | fields: lat, type, depth, ts Task: Fetch lon from pressure where depth is greater than the maximum of reading in drought_index for matching depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074069
train
v1
Sensor network script: Node: humidity | code: thr | fields: reading, lat, type, value Sensor: soil_moisture | fields: lon, unit, qc, level Task: Get level from humidity where unit appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074070
train
v1
Sensor network script: Node: rainfall | code: clr | fields: level, unit, type, depth Sensor: dew_point | fields: lat, type, qc, depth Task: Fetch value from rainfall where unit exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074071
train
v1
Sensor network script: Node: drought_index | code: stn | fields: type, lat, qc, depth Sensor: temperature | fields: reading, lon, depth, unit Task: Get lon from drought_index where qc appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074072
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: unit, depth, lat, type Sensor: humidity | fields: value, level, lon, ts Task: Fetch reading from cloud_cover where value is greater than the maximum of reading in humidity for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074073
train
v2
Sensor network script: Node: temperature | code: thr | fields: lat, depth, qc, unit Sensor: sunlight | fields: reading, value, qc, lat Task: Fetch reading from temperature that have at least one corresponding sunlight measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074074
train
v1
Sensor network script: Node: lightning | code: thr | fields: depth, value, lon, reading Sensor: pressure | fields: lat, depth, level, ts Task: Get reading from lightning where depth appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074075
train
v2
Sensor network script: Node: air_quality | code: mst | fields: level, type, lon, value Sensor: snow_depth | fields: lon, type, ts, value Task: Get reading from air_quality where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074076
train
v2
Sensor network script: Node: sunlight | code: hub | fields: lon, lat, type, depth Sensor: pressure | fields: value, level, reading, depth Task: Retrieve value from sunlight that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074077
train
v1
Sensor network script: Node: drought_index | code: gst | fields: unit, qc, lat, level Sensor: pressure | fields: depth, ts, value, reading Task: Fetch lat from drought_index where type exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074078
train
v2
Sensor network script: Node: sunlight | code: thr | fields: depth, level, type, qc Sensor: turbidity | fields: depth, unit, lat, ts Task: Fetch level from sunlight that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074079
train
v1
Sensor network script: Node: pressure | code: mst | fields: depth, qc, reading, lon Sensor: lightning | fields: lon, level, depth, lat Task: Retrieve reading from pressure whose unit is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074080
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, reading, value, unit Sensor: soil_moisture | fields: qc, unit, type, lat Task: Retrieve level from rainfall with value above the SUM(depth) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074081
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lat, ts, level, reading Sensor: cloud_cover | fields: qc, lat, level, type Task: Retrieve reading from rainfall that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074082
train
v1
Sensor network script: Node: frost | code: thr | fields: reading, depth, unit, lat Sensor: visibility | fields: value, unit, lat, lon Task: Fetch depth from frost where depth exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074083
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: reading, qc, unit, ts Sensor: evaporation | fields: value, depth, level, ts Task: Fetch level from cloud_cover that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074084
train
v3
Sensor network script: Node: frost | code: prt | fields: level, lon, qc, reading Sensor: rainfall | fields: depth, value, lon, reading Task: Get depth from frost where value exceeds the average value from rainfall for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074085
train
v2
Sensor network script: Node: air_quality | code: gst | fields: lat, reading, type, depth Sensor: evaporation | fields: depth, value, type, lon Task: Fetch level from air_quality that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074086
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: level, qc, reading, unit Sensor: snow_depth | fields: reading, qc, level, ts Task: Get lon from wind_speed where depth exceeds the average reading from snow_depth for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074087
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: unit, lon, ts, level Sensor: dew_point | fields: type, lat, qc, ts Task: Retrieve lon from cloud_cover with reading above the SUM(value) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074088
train
v2
Sensor network script: Node: evaporation | code: thr | fields: depth, level, lon, type Sensor: wind_speed | fields: reading, lon, lat, ts Task: Fetch depth from evaporation that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074089
train
v3
Sensor network script: Node: temperature | code: gst | fields: level, lat, lon, type Sensor: cloud_cover | fields: reading, depth, level, lon Task: Fetch depth from temperature where value is greater than the minimum of value in cloud_cover for matching depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074090
train
v2
Sensor network script: Node: humidity | code: prt | fields: depth, reading, level, ts Sensor: uv_index | fields: ts, lon, depth, level Task: Fetch lat from humidity that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074091
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: ts, depth, level, qc Sensor: visibility | fields: reading, lon, type, lat Task: Get lon from snow_depth where value exceeds the total value from visibility for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074092
train
v1
Sensor network script: Node: uv_index | code: gst | fields: ts, type, lat, depth Sensor: evaporation | fields: value, unit, ts, qc Task: Fetch depth from uv_index where depth exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074093
train
v1
Sensor network script: Node: drought_index | code: mst | fields: ts, unit, lat, level Sensor: air_quality | fields: reading, level, lon, type Task: Retrieve reading from drought_index whose unit is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074094
train
v3
Sensor network script: Node: pressure | code: mst | fields: level, ts, qc, reading Sensor: rainfall | fields: ts, qc, depth, type Task: Retrieve lat from pressure with value above the MAX(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074095
train
v3
Sensor network script: Node: uv_index | code: hub | fields: type, lat, level, depth Sensor: lightning | fields: qc, type, level, unit Task: Fetch level from uv_index where depth is greater than the average of value in lightning for matching ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074096
train
v2
Sensor network script: Node: visibility | code: thr | fields: qc, depth, ts, type Sensor: uv_index | fields: unit, qc, value, type Task: Fetch level from visibility that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074097
train
v3
Sensor network script: Node: visibility | code: hub | fields: depth, reading, value, lat Sensor: rainfall | fields: reading, level, ts, depth Task: Fetch level from visibility where value is greater than the count of of depth in rainfall for matching type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074098
train
v2
Sensor network script: Node: pressure | code: prt | fields: type, value, unit, lat Sensor: frost | fields: level, unit, value, reading Task: Get depth from pressure where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074099
train