variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: visibility | code: gst | fields: lon, lat, depth, qc Sensor: soil_moisture | fields: reading, depth, level, qc Task: Retrieve lat from visibility with value above the MIN(depth) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082000
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: lon, reading, type, qc Sensor: humidity | fields: ts, unit, lon, type Task: Fetch value from snow_depth that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082001
train
v2
Sensor network script: Node: lightning | code: clr | fields: level, unit, ts, type Sensor: snow_depth | fields: lon, depth, reading, value Task: Get depth from lightning where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082002
train
v1
Sensor network script: Node: visibility | code: stn | fields: value, lon, lat, reading Sensor: turbidity | fields: qc, level, reading, lon Task: Fetch depth from visibility where unit exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082003
train
v2
Sensor network script: Node: drought_index | code: ref | fields: value, reading, depth, lat Sensor: sunlight | fields: depth, lat, qc, reading Task: Get value from drought_index where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082004
train
v3
Sensor network script: Node: frost | code: thr | fields: depth, lat, type, reading Sensor: cloud_cover | fields: unit, depth, reading, ts Task: Fetch lon from frost where reading is greater than the minimum of value in cloud_cover for matching unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082005
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: ts, type, level, qc Sensor: lightning | fields: level, value, lon, unit Task: Fetch reading from cloud_cover where unit exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082006
train
v2
Sensor network script: Node: frost | code: gst | fields: lat, value, unit, type Sensor: cloud_cover | fields: value, level, lat, lon Task: Fetch depth from frost that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082007
train
v3
Sensor network script: Node: sunlight | code: thr | fields: level, value, depth, qc Sensor: uv_index | fields: level, lat, value, qc Task: Retrieve level from sunlight with depth above the MIN(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082008
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: level, value, type, reading Sensor: frost | fields: type, lat, value, level Task: Retrieve reading from snow_depth with value above the MAX(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082009
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lat, qc, depth, lon Sensor: rainfall | fields: lat, type, level, qc Task: Retrieve lat from cloud_cover with depth above the MAX(depth) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082010
train
v3
Sensor network script: Node: visibility | code: hub | fields: lon, type, depth, lat Sensor: pressure | fields: ts, lon, value, unit Task: Get depth from visibility where depth exceeds the count of depth from pressure for the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082011
train
v2
Sensor network script: Node: uv_index | code: ref | fields: ts, depth, type, qc Sensor: evaporation | fields: reading, unit, value, depth Task: Retrieve value from uv_index that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082012
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: level, unit, type, reading Sensor: uv_index | fields: lon, qc, reading, type Task: Fetch value from wind_speed where depth is greater than the average of value in uv_index for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082013
train
v2
Sensor network script: Node: air_quality | code: clr | fields: depth, qc, lon, ts Sensor: snow_depth | fields: unit, level, lat, depth Task: Fetch reading from air_quality that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082014
train
v1
Sensor network script: Node: dew_point | code: gst | fields: lon, reading, value, depth Sensor: cloud_cover | fields: ts, qc, lat, type Task: Get depth from dew_point where unit appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082015
train
v3
Sensor network script: Node: drought_index | code: thr | fields: value, level, lat, type Sensor: lightning | fields: lat, unit, type, reading Task: Retrieve level from drought_index with depth above the MAX(reading) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082016
train
v3
Sensor network script: Node: uv_index | code: prt | fields: lat, ts, depth, unit Sensor: humidity | fields: lat, ts, unit, depth Task: Get value from uv_index where reading exceeds the count of reading from humidity for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082017
train
v2
Sensor network script: Node: lightning | code: prt | fields: ts, unit, reading, depth Sensor: uv_index | fields: qc, lon, reading, type Task: Fetch value from lightning that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082018
train
v3
Sensor network script: Node: air_quality | code: hub | fields: level, ts, value, lon Sensor: visibility | fields: reading, unit, lon, type Task: Fetch level from air_quality where value is greater than the average of depth in visibility for matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082019
train
v3
Sensor network script: Node: turbidity | code: prt | fields: value, qc, depth, unit Sensor: wind_speed | fields: unit, reading, level, type Task: Fetch level from turbidity where reading is greater than the average of value in wind_speed for matching depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082020
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lon, unit, lat, ts Sensor: snow_depth | fields: qc, value, lat, depth Task: Retrieve depth from drought_index whose qc is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082021
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: lon, unit, type, qc Sensor: turbidity | fields: ts, type, lat, value Task: Get level from snow_depth where qc appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082022
train
v1
Sensor network script: Node: lightning | code: prt | fields: reading, unit, ts, value Sensor: uv_index | fields: qc, ts, lon, value Task: Fetch depth from lightning where qc exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082023
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: level, value, unit, lon Sensor: dew_point | fields: unit, ts, type, lon Task: Fetch value from cloud_cover that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082024
train
v3
Sensor network script: Node: sunlight | code: ref | fields: ts, unit, reading, lat Sensor: humidity | fields: level, ts, value, unit Task: Get reading from sunlight where reading exceeds the total depth from humidity for the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082025
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lon, type, level, qc Sensor: dew_point | fields: depth, ts, value, lon Task: Fetch level from drought_index that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082026
train
v1
Sensor network script: Node: sunlight | code: prt | fields: reading, lon, depth, ts Sensor: rainfall | fields: ts, reading, level, lat Task: Fetch value from sunlight where type exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082027
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: level, lon, unit, lat Sensor: dew_point | fields: type, unit, ts, depth Task: Retrieve lat from cloud_cover with depth above the MIN(reading) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082028
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: reading, value, level, lon Sensor: pressure | fields: depth, qc, type, level Task: Retrieve lat from soil_moisture with reading above the MIN(reading) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082029
train
v2
Sensor network script: Node: lightning | code: prt | fields: lon, type, depth, lat Sensor: frost | fields: level, lat, reading, lon Task: Fetch value from lightning that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082030
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: ts, qc, depth, unit Sensor: temperature | fields: lat, ts, depth, lon Task: Retrieve depth from soil_moisture that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082031
train
v2
Sensor network script: Node: uv_index | code: gst | fields: type, ts, reading, lon Sensor: humidity | fields: type, unit, qc, level Task: Fetch level from uv_index that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "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_082032
train
v1
Sensor network script: Node: humidity | code: mst | fields: ts, qc, reading, level Sensor: visibility | fields: reading, level, value, lat Task: Fetch value from humidity where ts exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082033
train
v1
Sensor network script: Node: humidity | code: hub | fields: level, reading, type, lat Sensor: drought_index | fields: level, unit, depth, value Task: Fetch lon from humidity where unit exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082034
train
v3
Sensor network script: Node: rainfall | code: gst | fields: lon, qc, depth, lat Sensor: temperature | fields: type, lat, value, unit Task: Retrieve lon from rainfall with reading above the MIN(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082035
train
v3
Sensor network script: Node: temperature | code: mst | fields: level, lat, value, ts Sensor: soil_moisture | fields: level, qc, value, lon Task: Get level from temperature where depth exceeds the count of depth from soil_moisture for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082036
train
v1
Sensor network script: Node: dew_point | code: ref | fields: qc, value, ts, depth Sensor: rainfall | fields: qc, unit, reading, lat Task: Fetch value from dew_point where type exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082037
train
v2
Sensor network script: Node: pressure | code: ref | fields: value, lon, type, qc Sensor: evaporation | fields: unit, lat, depth, level Task: Retrieve depth from pressure that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082038
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: level, value, lon, ts Sensor: turbidity | fields: unit, value, level, lon Task: Retrieve level from soil_moisture that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082039
train
v3
Sensor network script: Node: drought_index | code: hub | fields: lon, level, depth, value Sensor: uv_index | fields: value, qc, reading, ts Task: Fetch lon from drought_index where reading is greater than the count of of reading in uv_index for matching depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082040
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: type, qc, lon, unit Sensor: rainfall | fields: lat, type, unit, depth Task: Get lon from soil_moisture where reading exceeds the average value from rainfall for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082041
train
v2
Sensor network script: Node: temperature | code: prt | fields: reading, value, level, ts Sensor: snow_depth | fields: level, qc, unit, lon Task: Retrieve value from temperature that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082042
train
v2
Sensor network script: Node: dew_point | code: hub | fields: value, unit, level, depth Sensor: drought_index | fields: value, ts, unit, lon Task: Get lon from dew_point where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082043
train
v2
Sensor network script: Node: visibility | code: prt | fields: ts, depth, value, qc Sensor: wind_speed | fields: lon, lat, ts, type Task: Retrieve value from visibility that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082044
train
v2
Sensor network script: Node: humidity | code: prt | fields: depth, lat, reading, qc Sensor: soil_moisture | fields: qc, lon, value, ts Task: Retrieve value from humidity that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082045
train
v1
Sensor network script: Node: uv_index | code: prt | fields: depth, unit, qc, level Sensor: drought_index | fields: lat, lon, ts, unit Task: Get lat from uv_index where type appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082046
train
v1
Sensor network script: Node: air_quality | code: mst | fields: reading, value, qc, unit Sensor: drought_index | fields: reading, ts, lat, value Task: Fetch level from air_quality where unit exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082047
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: lon, qc, reading, type Sensor: sunlight | fields: lat, level, depth, ts Task: Fetch lat from cloud_cover that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082048
train
v1
Sensor network script: Node: uv_index | code: stn | fields: value, lat, unit, level Sensor: snow_depth | fields: reading, qc, unit, type Task: Retrieve lat from uv_index whose unit is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082049
train
v3
Sensor network script: Node: uv_index | code: hub | fields: qc, reading, depth, ts Sensor: drought_index | fields: level, value, ts, qc Task: Fetch lat from uv_index where value is greater than the minimum of reading in drought_index for matching type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082050
train
v3
Sensor network script: Node: evaporation | code: clr | fields: depth, type, level, lon Sensor: temperature | fields: qc, unit, reading, lon Task: Get depth from evaporation where depth exceeds the minimum reading from temperature for the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082051
train
v2
Sensor network script: Node: air_quality | code: ref | fields: depth, reading, lon, qc Sensor: pressure | fields: lon, value, reading, type Task: Get lon from air_quality where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082052
train
v2
Sensor network script: Node: dew_point | code: ref | fields: lon, lat, value, ts Sensor: drought_index | fields: lon, type, ts, value Task: Fetch depth from dew_point that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082053
train
v2
Sensor network script: Node: frost | code: clr | fields: value, type, unit, qc Sensor: dew_point | fields: reading, unit, depth, qc Task: Retrieve level from frost that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082054
train
v1
Sensor network script: Node: dew_point | code: prt | fields: ts, value, type, qc Sensor: visibility | fields: unit, lon, value, type Task: Get depth from dew_point where type appears in visibility readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082055
train
v1
Sensor network script: Node: sunlight | code: thr | fields: level, lat, lon, type Sensor: cloud_cover | fields: lat, level, lon, reading Task: Get level from sunlight where unit appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082056
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lat, depth, ts, qc Sensor: evaporation | fields: value, reading, ts, unit Task: Retrieve depth from cloud_cover whose unit is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082057
train
v2
Sensor network script: Node: visibility | code: prt | fields: type, lat, ts, level Sensor: temperature | fields: type, depth, reading, ts Task: Retrieve reading from visibility that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082058
train
v1
Sensor network script: Node: sunlight | code: clr | fields: lat, depth, level, qc Sensor: snow_depth | fields: type, qc, lon, value Task: Get reading from sunlight where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082059
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: depth, reading, ts, level Sensor: pressure | fields: value, unit, level, lon Task: Retrieve depth from snow_depth that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082060
train
v3
Sensor network script: Node: temperature | code: hub | fields: depth, reading, type, qc Sensor: lightning | fields: reading, qc, value, level Task: Get value from temperature where reading exceeds the total reading from lightning for the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082061
train
v3
Sensor network script: Node: evaporation | code: mst | fields: level, lat, unit, ts Sensor: snow_depth | fields: level, type, unit, lat Task: Retrieve reading from evaporation with value above the COUNT(reading) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082062
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: level, ts, qc, type Sensor: uv_index | fields: lat, level, depth, ts Task: Retrieve lat from cloud_cover with depth above the COUNT(depth) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082063
train
v1
Sensor network script: Node: evaporation | code: ref | fields: type, ts, lat, unit Sensor: uv_index | fields: value, reading, type, ts Task: Retrieve lat from evaporation whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082064
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lat, depth, lon, unit Sensor: uv_index | fields: depth, lat, type, lon Task: Fetch lon from dew_point where depth exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082065
train
v2
Sensor network script: Node: air_quality | code: ref | fields: depth, type, level, unit Sensor: cloud_cover | fields: value, type, qc, reading Task: Get depth from air_quality where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082066
train
v2
Sensor network script: Node: visibility | code: clr | fields: lat, level, type, ts Sensor: drought_index | fields: unit, lon, depth, ts Task: Get level from visibility where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082067
train
v2
Sensor network script: Node: drought_index | code: gst | fields: level, lat, type, qc Sensor: pressure | fields: qc, type, value, lon Task: Get depth from drought_index where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082068
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: qc, lon, reading, ts Sensor: turbidity | fields: unit, lon, reading, lat Task: Retrieve lon from wind_speed whose type is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082069
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: value, lon, qc, ts Sensor: dew_point | fields: unit, qc, value, lon Task: Fetch level from snow_depth where type exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082070
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: type, lon, ts, lat Sensor: turbidity | fields: depth, qc, type, ts Task: Fetch reading from soil_moisture where value is greater than the maximum of depth in turbidity for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082071
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: level, lon, unit, depth Sensor: pressure | fields: depth, ts, level, unit Task: Get depth from cloud_cover where value exceeds the total reading from pressure for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082072
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, level, type, unit Sensor: turbidity | fields: unit, lat, reading, lon Task: Fetch value from frost where qc exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082073
train
v1
Sensor network script: Node: dew_point | code: clr | fields: ts, depth, lon, reading Sensor: cloud_cover | fields: lat, depth, value, lon Task: Fetch depth from dew_point where unit exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082074
train
v3
Sensor network script: Node: sunlight | code: ref | fields: qc, value, level, depth Sensor: visibility | fields: unit, ts, reading, value Task: Fetch depth from sunlight where value is greater than the count of of value in visibility for matching depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082075
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: depth, type, reading, ts Sensor: uv_index | fields: level, reading, lon, unit Task: Get depth from wind_speed where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082076
train
v3
Sensor network script: Node: sunlight | code: hub | fields: level, type, lat, ts Sensor: drought_index | fields: level, qc, value, depth Task: Retrieve value from sunlight with value above the SUM(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082077
train
v1
Sensor network script: Node: lightning | code: clr | fields: ts, qc, lon, value Sensor: rainfall | fields: unit, level, ts, value Task: Retrieve lat from lightning whose qc is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082078
train
v3
Sensor network script: Node: air_quality | code: stn | fields: unit, lat, value, lon Sensor: frost | fields: lat, level, lon, value Task: Get level from air_quality where reading exceeds the total depth from frost for the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082079
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lat, type, qc, level Sensor: uv_index | fields: depth, ts, value, lat Task: Get value from dew_point where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082080
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: value, qc, unit, depth Sensor: snow_depth | fields: unit, ts, lat, reading Task: Fetch reading from wind_speed where type exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082081
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, unit, value, ts Sensor: cloud_cover | fields: type, level, qc, reading Task: Retrieve lon from evaporation whose ts is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082082
train
v3
Sensor network script: Node: temperature | code: prt | fields: reading, unit, level, depth Sensor: visibility | fields: lat, type, reading, ts Task: Fetch reading from temperature where value is greater than the average of depth in visibility for matching ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082083
train
v1
Sensor network script: Node: dew_point | code: stn | fields: unit, reading, lon, ts Sensor: wind_speed | fields: qc, lon, value, level Task: Fetch depth from dew_point where depth exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082084
train
v1
Sensor network script: Node: turbidity | code: stn | fields: qc, depth, ts, value Sensor: wind_speed | fields: type, unit, value, reading Task: Get depth from turbidity where type appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082085
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, lon, depth, reading Sensor: turbidity | fields: lon, level, qc, ts Task: Get lon from air_quality where reading exceeds the minimum reading from turbidity for the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082086
train
v1
Sensor network script: Node: humidity | code: clr | fields: ts, lat, level, depth Sensor: uv_index | fields: reading, ts, type, qc Task: Fetch reading from humidity where type exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082087
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: lat, lon, level, depth Sensor: dew_point | fields: depth, reading, unit, qc Task: Get lon from wind_speed where type appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082088
train
v1
Sensor network script: Node: drought_index | code: ref | fields: value, level, unit, reading Sensor: uv_index | fields: value, qc, depth, type Task: Retrieve value from drought_index whose depth is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082089
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: ts, lon, unit, reading Sensor: drought_index | fields: reading, type, lon, unit Task: Fetch lat from soil_moisture where depth is greater than the total of reading in drought_index for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082090
train
v2
Sensor network script: Node: air_quality | code: stn | fields: reading, ts, qc, unit Sensor: humidity | fields: ts, qc, depth, level Task: Retrieve depth from air_quality that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082091
train
v1
Sensor network script: Node: dew_point | code: hub | fields: unit, level, depth, ts Sensor: rainfall | fields: level, qc, reading, lat Task: Get reading from dew_point where type appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082092
train
v1
Sensor network script: Node: rainfall | code: mst | fields: unit, depth, ts, qc Sensor: evaporation | fields: type, reading, level, lon Task: Fetch lon from rainfall where type exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082093
train
v2
Sensor network script: Node: turbidity | code: stn | fields: unit, depth, ts, value Sensor: lightning | fields: lat, level, lon, ts Task: Fetch level from turbidity that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082094
train
v2
Sensor network script: Node: drought_index | code: ref | fields: depth, level, value, lat Sensor: cloud_cover | fields: lon, ts, level, qc Task: Get level from drought_index where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082095
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lon, value, type, reading Sensor: evaporation | fields: unit, depth, lat, ts Task: Fetch depth from wind_speed that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082096
train
v1
Sensor network script: Node: lightning | code: hub | fields: reading, ts, lat, level Sensor: dew_point | fields: reading, ts, level, unit Task: Fetch level from lightning where depth exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082097
train
v3
Sensor network script: Node: drought_index | code: gst | fields: unit, qc, type, lat Sensor: air_quality | fields: depth, qc, type, value Task: Fetch value from drought_index where value is greater than the minimum of value in air_quality for matching type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082098
train
v2
Sensor network script: Node: pressure | code: gst | fields: unit, level, qc, depth Sensor: visibility | fields: qc, depth, lat, level Task: Fetch reading from pressure that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082099
train