variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: temperature | code: prt | fields: lat, ts, unit, qc Sensor: lightning | fields: lon, lat, unit, ts Task: Fetch lat from temperature that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018000
train
v2
Sensor network script: Node: rainfall | code: prt | fields: lon, type, depth, value Sensor: humidity | fields: lat, ts, value, reading Task: Fetch depth from rainfall that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018001
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lat, type, unit, depth Sensor: evaporation | fields: reading, ts, type, lat Task: Get lat from wind_speed where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018002
train
v2
Sensor network script: Node: evaporation | code: mst | fields: reading, qc, lon, ts Sensor: rainfall | fields: value, lon, reading, lat Task: Get depth from evaporation where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018003
train
v1
Sensor network script: Node: lightning | code: thr | fields: lat, qc, unit, lon Sensor: rainfall | fields: lon, level, qc, type Task: Retrieve depth from lightning whose type is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018004
train
v3
Sensor network script: Node: dew_point | code: clr | fields: unit, reading, type, lon Sensor: soil_moisture | fields: level, lon, type, ts Task: Retrieve level from dew_point with depth above the SUM(value) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018005
train
v1
Sensor network script: Node: turbidity | code: clr | fields: lat, level, lon, value Sensor: lightning | fields: ts, level, lat, lon Task: Retrieve depth from turbidity whose depth is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018006
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: value, depth, reading, unit Sensor: humidity | fields: depth, lat, qc, ts Task: Retrieve reading from wind_speed that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018007
train
v2
Sensor network script: Node: drought_index | code: clr | fields: type, lon, value, reading Sensor: sunlight | fields: type, lon, qc, depth Task: Retrieve lat from drought_index that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018008
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, lat, unit, value Sensor: drought_index | fields: type, lat, ts, level Task: Fetch depth from evaporation where qc exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018009
train
v1
Sensor network script: Node: uv_index | code: stn | fields: reading, level, lat, qc Sensor: snow_depth | fields: depth, lat, qc, reading Task: Retrieve value from uv_index whose ts is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018010
train
v3
Sensor network script: Node: drought_index | code: ref | fields: lon, depth, qc, reading Sensor: cloud_cover | fields: ts, value, reading, lat Task: Get reading from drought_index where reading exceeds the total value from cloud_cover for the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018011
train
v3
Sensor network script: Node: rainfall | code: hub | fields: unit, lon, depth, level Sensor: drought_index | fields: value, lon, ts, lat Task: Fetch lon from rainfall where value is greater than the average of reading in drought_index for matching type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018012
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: value, ts, unit, lat Sensor: dew_point | fields: depth, qc, type, reading Task: Retrieve value from wind_speed that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018013
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: value, lon, ts, unit Sensor: temperature | fields: qc, level, ts, value Task: Fetch depth from soil_moisture that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018014
train
v2
Sensor network script: Node: pressure | code: prt | fields: lat, unit, reading, level Sensor: temperature | fields: type, reading, ts, value Task: Retrieve lon from pressure that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018015
train
v1
Sensor network script: Node: lightning | code: thr | fields: unit, reading, depth, qc Sensor: cloud_cover | fields: depth, value, lon, type Task: Get lat from lightning where ts appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018016
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: ts, type, qc, lon Sensor: soil_moisture | fields: reading, lon, level, lat Task: Get lat from snow_depth where value exceeds the minimum reading from soil_moisture for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018017
train
v3
Sensor network script: Node: visibility | code: hub | fields: type, unit, value, lat Sensor: humidity | fields: depth, qc, ts, reading Task: Retrieve level from visibility with depth above the AVG(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018018
train
v2
Sensor network script: Node: temperature | code: mst | fields: unit, depth, lat, level Sensor: humidity | fields: ts, qc, level, depth Task: Get reading from temperature where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018019
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lon, qc, depth, unit Sensor: visibility | fields: level, ts, unit, qc Task: Get reading from dew_point where depth exceeds the minimum value from visibility for the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018020
train
v3
Sensor network script: Node: pressure | code: mst | fields: depth, reading, value, type Sensor: rainfall | fields: lon, level, reading, ts Task: Fetch value from pressure where reading is greater than the minimum of value in rainfall for matching qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018021
train
v1
Sensor network script: Node: lightning | code: hub | fields: qc, lat, level, ts Sensor: turbidity | fields: unit, depth, level, value Task: Get depth from lightning where depth appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018022
train
v3
Sensor network script: Node: frost | code: gst | fields: depth, lat, lon, level Sensor: turbidity | fields: lon, type, reading, value Task: Get reading from frost where reading exceeds the maximum reading from turbidity for the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018023
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: unit, value, depth, ts Sensor: rainfall | fields: type, ts, lon, qc Task: Get value from soil_moisture where ts appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018024
train
v1
Sensor network script: Node: visibility | code: hub | fields: value, unit, type, level Sensor: dew_point | fields: reading, value, lat, level Task: Fetch reading from visibility where ts exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018025
train
v2
Sensor network script: Node: evaporation | code: hub | fields: ts, value, lat, reading Sensor: visibility | fields: level, unit, lat, depth Task: Retrieve lon from evaporation that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018026
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, type, value, level Sensor: soil_moisture | fields: lon, lat, level, type Task: Fetch reading from humidity where value is greater than the average of reading in soil_moisture for matching ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018027
train
v1
Sensor network script: Node: frost | code: stn | fields: value, ts, qc, reading Sensor: temperature | fields: depth, reading, lat, unit Task: Retrieve level from frost whose type is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018028
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lon, reading, qc, value Sensor: frost | fields: ts, qc, lon, lat Task: Get reading from evaporation where unit appears in frost readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018029
train
v3
Sensor network script: Node: evaporation | code: mst | fields: depth, qc, value, unit Sensor: dew_point | fields: lat, level, type, qc Task: Fetch level from evaporation where value is greater than the maximum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018030
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, lat, unit, type Sensor: wind_speed | fields: reading, unit, depth, ts Task: Fetch reading from snow_depth that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018031
train
v2
Sensor network script: Node: air_quality | code: mst | fields: value, reading, level, type Sensor: sunlight | fields: reading, qc, level, depth Task: Get reading from air_quality where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018032
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lon, value, lat, ts Sensor: humidity | fields: qc, value, ts, depth Task: Retrieve reading from soil_moisture whose type is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018033
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: reading, unit, depth, qc Sensor: rainfall | fields: lon, unit, ts, qc Task: Retrieve value from snow_depth with depth above the MIN(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018034
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: depth, lat, lon, qc Sensor: visibility | fields: depth, type, unit, ts Task: Retrieve reading from wind_speed whose ts is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018035
train
v2
Sensor network script: Node: humidity | code: clr | fields: value, lon, reading, depth Sensor: dew_point | fields: type, level, depth, unit Task: Get lon from humidity where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018036
train
v3
Sensor network script: Node: rainfall | code: ref | fields: depth, ts, lat, reading Sensor: drought_index | fields: qc, reading, type, ts Task: Retrieve lon from rainfall with depth above the AVG(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018037
train
v1
Sensor network script: Node: dew_point | code: prt | fields: depth, lat, lon, type Sensor: turbidity | fields: value, unit, type, ts Task: Fetch reading from dew_point where depth exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018038
train
v3
Sensor network script: Node: visibility | code: thr | fields: unit, type, qc, ts Sensor: drought_index | fields: value, qc, unit, lon Task: Get value from visibility where reading exceeds the count of value from drought_index for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018039
train
v2
Sensor network script: Node: air_quality | code: prt | fields: unit, lon, type, depth Sensor: turbidity | fields: depth, level, qc, type Task: Fetch level from air_quality that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018040
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: unit, depth, reading, level Sensor: evaporation | fields: unit, value, ts, level Task: Get reading from soil_moisture where reading exceeds the average value from evaporation for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018041
train
v3
Sensor network script: Node: temperature | code: stn | fields: unit, reading, type, depth Sensor: rainfall | fields: depth, reading, lon, qc Task: Get lon from temperature where value exceeds the total value from rainfall for the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018042
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: qc, reading, value, lat Sensor: uv_index | fields: level, type, unit, lat Task: Get lat from snow_depth where qc appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018043
train
v2
Sensor network script: Node: sunlight | code: stn | fields: ts, type, level, lon Sensor: temperature | fields: level, lat, value, ts Task: Get lon from sunlight where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018044
train
v1
Sensor network script: Node: sunlight | code: stn | fields: ts, qc, lon, reading Sensor: air_quality | fields: reading, ts, qc, depth Task: Fetch value from sunlight where ts exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018045
train
v1
Sensor network script: Node: drought_index | code: stn | fields: qc, ts, unit, value Sensor: frost | fields: level, ts, qc, reading Task: Retrieve level from drought_index whose unit is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018046
train
v2
Sensor network script: Node: evaporation | code: hub | fields: value, type, ts, lon Sensor: cloud_cover | fields: type, unit, qc, lat Task: Get lon from evaporation where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018047
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: type, depth, level, value Sensor: drought_index | fields: lon, reading, lat, level Task: Retrieve lat from snow_depth that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018048
train
v2
Sensor network script: Node: turbidity | code: thr | fields: lon, reading, ts, value Sensor: lightning | fields: qc, lon, unit, type Task: Retrieve level from turbidity that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018049
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: reading, ts, value, level Sensor: uv_index | fields: depth, type, qc, value Task: Get level from snow_depth where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018050
train
v3
Sensor network script: Node: uv_index | code: stn | fields: ts, reading, type, depth Sensor: visibility | fields: unit, type, depth, lat Task: Get level from uv_index where depth exceeds the average reading from visibility for the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018051
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: reading, lat, unit, level Sensor: temperature | fields: value, reading, lon, type Task: Fetch reading from wind_speed where reading is greater than the total of value in temperature for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018052
train
v3
Sensor network script: Node: pressure | code: prt | fields: unit, qc, depth, lat Sensor: turbidity | fields: qc, reading, lon, lat Task: Fetch level from pressure where value is greater than the maximum of depth in turbidity for matching depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018053
train
v2
Sensor network script: Node: visibility | code: mst | fields: type, qc, reading, lon Sensor: sunlight | fields: level, unit, depth, ts Task: Fetch value from visibility that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018054
train
v2
Sensor network script: Node: drought_index | code: stn | fields: depth, reading, unit, lon Sensor: soil_moisture | fields: lon, unit, type, depth Task: Get lat from drought_index where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018055
train
v2
Sensor network script: Node: dew_point | code: hub | fields: lat, ts, depth, lon Sensor: frost | fields: level, lon, type, lat Task: Retrieve lat from dew_point that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018056
train
v2
Sensor network script: Node: drought_index | code: ref | fields: depth, level, value, qc Sensor: sunlight | fields: ts, level, qc, depth Task: Retrieve level from drought_index that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018057
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lon, value, qc, reading Sensor: cloud_cover | fields: qc, ts, lat, lon Task: Fetch level from dew_point where reading is greater than the total of reading in cloud_cover for matching qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018058
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lat, qc, unit, value Sensor: humidity | fields: ts, reading, type, lat Task: Retrieve reading from evaporation that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018059
train
v2
Sensor network script: Node: turbidity | code: thr | fields: level, lon, qc, reading Sensor: pressure | fields: qc, lat, level, reading Task: Retrieve depth from turbidity that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018060
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: reading, qc, ts, level Sensor: dew_point | fields: unit, reading, level, depth Task: Get lon from cloud_cover where reading exceeds the count of depth from dew_point for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018061
train
v2
Sensor network script: Node: pressure | code: thr | fields: lon, level, lat, reading Sensor: visibility | fields: reading, qc, lat, value Task: Retrieve lon from pressure that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "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_018062
train
v1
Sensor network script: Node: dew_point | code: hub | fields: type, unit, ts, reading Sensor: visibility | fields: lon, reading, depth, type Task: Get lon from dew_point where depth appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018063
train
v2
Sensor network script: Node: visibility | code: thr | fields: unit, level, qc, lon Sensor: sunlight | fields: reading, type, lat, value Task: Get value from visibility where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018064
train
v1
Sensor network script: Node: drought_index | code: ref | fields: ts, value, level, type Sensor: lightning | fields: lat, lon, reading, unit Task: Retrieve level from drought_index whose ts is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018065
train
v2
Sensor network script: Node: frost | code: hub | fields: level, ts, type, lat Sensor: rainfall | fields: lat, reading, ts, qc Task: Fetch depth from frost that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018066
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: unit, lat, qc, lon Sensor: uv_index | fields: unit, reading, type, qc Task: Retrieve lat from snow_depth that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018067
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: value, qc, lat, type Sensor: drought_index | fields: type, value, ts, unit Task: Get lat from soil_moisture where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018068
train
v3
Sensor network script: Node: dew_point | code: ref | fields: type, lat, qc, value Sensor: drought_index | fields: ts, unit, qc, lon Task: Retrieve value from dew_point with depth above the MAX(reading) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018069
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: lon, level, unit, type Sensor: visibility | fields: lat, level, type, reading Task: Fetch depth from snow_depth where value is greater than the maximum of depth in visibility for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018070
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: lon, lat, type, level Sensor: uv_index | fields: type, lat, unit, ts Task: Get value from snow_depth where type appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018071
train
v1
Sensor network script: Node: pressure | code: prt | fields: type, qc, level, depth Sensor: snow_depth | fields: reading, qc, lat, value Task: Retrieve lat from pressure whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018072
train
v1
Sensor network script: Node: air_quality | code: clr | fields: unit, type, level, depth Sensor: drought_index | fields: lat, unit, reading, level Task: Retrieve lat from air_quality whose depth is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018073
train
v1
Sensor network script: Node: air_quality | code: clr | fields: value, reading, type, ts Sensor: turbidity | fields: unit, value, level, lat Task: Get lon from air_quality where ts appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018074
train
v1
Sensor network script: Node: rainfall | code: mst | fields: qc, type, unit, level Sensor: evaporation | fields: qc, type, reading, ts Task: Fetch reading from rainfall where ts exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018075
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: qc, depth, reading, level Sensor: snow_depth | fields: type, reading, depth, qc Task: Fetch level from soil_moisture that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018076
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: depth, type, ts, lon Sensor: rainfall | fields: value, type, depth, level Task: Retrieve level from wind_speed that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018077
train
v1
Sensor network script: Node: visibility | code: prt | fields: qc, lat, depth, ts Sensor: wind_speed | fields: ts, value, unit, reading Task: Fetch lon from visibility where depth exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018078
train
v3
Sensor network script: Node: pressure | code: thr | fields: reading, level, lon, value Sensor: dew_point | fields: reading, lon, type, depth Task: Retrieve lon from pressure with reading above the AVG(depth) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018079
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: qc, unit, lat, level Sensor: turbidity | fields: value, type, unit, lon Task: Get depth from cloud_cover where ts appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018080
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: depth, lat, value, level Sensor: lightning | fields: lon, reading, ts, type Task: Retrieve reading from cloud_cover whose ts is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018081
train
v3
Sensor network script: Node: sunlight | code: hub | fields: depth, ts, type, reading Sensor: cloud_cover | fields: unit, value, depth, ts Task: Fetch reading from sunlight where value is greater than the total of value in cloud_cover for matching type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018082
train
v2
Sensor network script: Node: evaporation | code: prt | fields: lat, reading, unit, value Sensor: soil_moisture | fields: depth, level, type, lon Task: Retrieve lat from evaporation that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018083
train
v1
Sensor network script: Node: turbidity | code: ref | fields: lat, unit, type, level Sensor: evaporation | fields: type, depth, ts, lat Task: Retrieve depth from turbidity whose unit is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018084
train
v3
Sensor network script: Node: rainfall | code: clr | fields: level, lon, value, lat Sensor: pressure | fields: type, level, ts, lat Task: Fetch reading from rainfall where depth is greater than the count of of depth in pressure for matching type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018085
train
v2
Sensor network script: Node: turbidity | code: stn | fields: value, lon, unit, lat Sensor: air_quality | fields: level, unit, value, depth Task: Retrieve depth from turbidity that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018086
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: type, qc, ts, level Sensor: air_quality | fields: level, lon, reading, ts Task: Get value from wind_speed where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018087
train
v2
Sensor network script: Node: evaporation | code: stn | fields: lat, qc, unit, value Sensor: pressure | fields: value, reading, unit, ts Task: Retrieve lat from evaporation that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018088
train
v2
Sensor network script: Node: frost | code: stn | fields: type, lon, reading, qc Sensor: air_quality | fields: lon, type, value, lat Task: Fetch lat from frost that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018089
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: reading, depth, type, value Sensor: temperature | fields: type, unit, ts, depth Task: Get depth from cloud_cover where depth exceeds the maximum reading from temperature for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018090
train
v2
Sensor network script: Node: lightning | code: gst | fields: type, lon, ts, qc Sensor: rainfall | fields: value, reading, type, level Task: Get level from lightning where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018091
train
v3
Sensor network script: Node: dew_point | code: gst | fields: ts, type, lat, reading Sensor: humidity | fields: qc, ts, value, type Task: Fetch value from dew_point where reading is greater than the total of value in humidity for matching unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018092
train
v3
Sensor network script: Node: lightning | code: mst | fields: type, lon, lat, ts Sensor: uv_index | fields: depth, reading, ts, type Task: Retrieve depth from lightning with reading above the MAX(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018093
train
v2
Sensor network script: Node: humidity | code: gst | fields: unit, qc, ts, lat Sensor: soil_moisture | fields: lon, value, lat, depth Task: Retrieve lat from humidity that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( 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", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018094
train
v1
Sensor network script: Node: uv_index | code: thr | fields: value, ts, level, lon Sensor: visibility | fields: ts, lat, value, depth Task: Fetch lon from uv_index where unit exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018095
train
v3
Sensor network script: Node: evaporation | code: hub | fields: value, lat, unit, depth Sensor: turbidity | fields: depth, lon, unit, reading Task: Retrieve lat from evaporation with reading above the MAX(value) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018096
train
v2
Sensor network script: Node: temperature | code: stn | fields: lat, ts, type, lon Sensor: drought_index | fields: depth, qc, level, value Task: Get lon from temperature where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018097
train
v3
Sensor network script: Node: pressure | code: clr | fields: depth, ts, unit, type Sensor: drought_index | fields: value, lat, type, reading Task: Get value from pressure where value exceeds the count of value from drought_index for the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "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_018098
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: ts, reading, value, depth Sensor: dew_point | fields: depth, ts, lat, value Task: Retrieve value from wind_speed with depth above the AVG(value) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018099
train