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: drought_index | code: hub | fields: reading, qc, value, depth Sensor: cloud_cover | fields: depth, unit, value, type Task: Fetch lat from drought_index that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078000
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, qc, unit, lat Sensor: temperature | fields: level, ts, type, depth Task: Get lon from rainfall where reading exceeds the maximum reading from temperature for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078001
train
v3
Sensor network script: Node: air_quality | code: ref | fields: qc, type, lon, value Sensor: sunlight | fields: depth, lat, reading, value Task: Retrieve lat from air_quality with depth above the MAX(value) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078002
train
v1
Sensor network script: Node: sunlight | code: thr | fields: unit, type, lon, lat Sensor: rainfall | fields: lon, unit, reading, ts Task: Fetch reading from sunlight where ts exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078003
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lon, unit, type, value Sensor: wind_speed | fields: reading, lat, unit, ts Task: Get lat from cloud_cover where reading exceeds the maximum value from wind_speed for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078004
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: unit, reading, qc, level Sensor: turbidity | fields: ts, lat, lon, type Task: Fetch value from cloud_cover where depth is greater than the minimum of value in turbidity for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078005
train
v1
Sensor network script: Node: uv_index | code: mst | fields: qc, level, lat, value Sensor: cloud_cover | fields: level, ts, lat, reading Task: Retrieve lon from uv_index whose unit is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078006
train
v1
Sensor network script: Node: rainfall | code: mst | fields: lat, depth, type, qc Sensor: drought_index | fields: value, unit, ts, reading Task: Get reading from rainfall where type appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078007
train
v3
Sensor network script: Node: pressure | code: thr | fields: value, lon, reading, qc Sensor: humidity | fields: qc, lon, level, value Task: Fetch level from pressure where depth is greater than the maximum of depth in humidity for matching qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078008
train
v3
Sensor network script: Node: air_quality | code: gst | fields: reading, type, lat, lon Sensor: drought_index | fields: value, reading, lat, type Task: Retrieve lat from air_quality with depth above the MAX(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078009
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: ts, type, reading, level Sensor: lightning | fields: reading, unit, lat, depth Task: Fetch lon from soil_moisture where ts exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078010
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: type, ts, reading, unit Sensor: turbidity | fields: qc, unit, reading, type Task: Fetch lon from soil_moisture where depth is greater than the minimum of reading in turbidity for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078011
train
v3
Sensor network script: Node: lightning | code: clr | fields: ts, type, qc, level Sensor: pressure | fields: reading, ts, type, lon Task: Retrieve lon from lightning with value above the MAX(depth) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078012
train
v3
Sensor network script: Node: visibility | code: hub | fields: lon, depth, type, lat Sensor: lightning | fields: type, reading, level, value Task: Get reading from visibility where reading exceeds the total value from lightning for the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078013
train
v2
Sensor network script: Node: drought_index | code: gst | fields: depth, ts, reading, value Sensor: pressure | fields: depth, lat, reading, qc Task: Get depth from drought_index where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078014
train
v2
Sensor network script: Node: frost | code: clr | fields: ts, unit, type, lon Sensor: uv_index | fields: lon, lat, type, ts Task: Get lat from frost where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078015
train
v2
Sensor network script: Node: air_quality | code: clr | fields: level, type, unit, ts Sensor: wind_speed | fields: value, reading, lat, depth Task: Retrieve reading from air_quality that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078016
train
v2
Sensor network script: Node: turbidity | code: hub | fields: level, lat, unit, reading Sensor: dew_point | fields: value, reading, type, depth Task: Fetch lat from turbidity that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078017
train
v3
Sensor network script: Node: temperature | code: prt | fields: lat, type, value, qc Sensor: frost | fields: value, lat, qc, reading Task: Get lat from temperature where reading exceeds the maximum reading from frost for the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078018
train
v2
Sensor network script: Node: humidity | code: stn | fields: type, lon, lat, unit Sensor: cloud_cover | fields: qc, unit, depth, lat Task: Get lon from humidity where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078019
train
v3
Sensor network script: Node: air_quality | code: stn | fields: depth, reading, value, unit Sensor: turbidity | fields: lat, reading, value, level Task: Fetch value from air_quality where depth is greater than the total of value in turbidity for matching unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078020
train
v3
Sensor network script: Node: turbidity | code: thr | fields: lat, depth, ts, reading Sensor: frost | fields: type, qc, level, ts Task: Retrieve level from turbidity with value above the SUM(value) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="unit"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078021
train
v2
Sensor network script: Node: pressure | code: mst | fields: type, reading, ts, level Sensor: rainfall | fields: depth, lat, qc, value Task: Retrieve reading from pressure that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078022
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: type, ts, lon, qc Sensor: snow_depth | fields: qc, unit, depth, type Task: Retrieve value from soil_moisture that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078023
train
v3
Sensor network script: Node: evaporation | code: prt | fields: value, type, lat, ts Sensor: visibility | fields: ts, type, unit, reading Task: Retrieve lon from evaporation with value above the MAX(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078024
train
v3
Sensor network script: Node: lightning | code: hub | fields: unit, depth, level, type Sensor: temperature | fields: value, unit, qc, type Task: Fetch value from lightning where depth is greater than the minimum of depth in temperature for matching depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078025
train
v1
Sensor network script: Node: air_quality | code: gst | fields: level, type, reading, unit Sensor: snow_depth | fields: qc, lon, depth, ts Task: Retrieve depth from air_quality whose unit is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078026
train
v2
Sensor network script: Node: air_quality | code: ref | fields: level, lon, qc, value Sensor: snow_depth | fields: qc, lon, ts, type Task: Get level from air_quality where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078027
train
v2
Sensor network script: Node: visibility | code: hub | fields: lon, unit, depth, qc Sensor: cloud_cover | fields: lon, ts, qc, value Task: Retrieve lon from visibility that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078028
train
v1
Sensor network script: Node: sunlight | code: hub | fields: value, level, qc, lat Sensor: cloud_cover | fields: ts, depth, unit, value Task: Retrieve level from sunlight whose depth is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078029
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: lat, reading, value, qc Sensor: turbidity | fields: ts, lat, unit, reading Task: Get reading from cloud_cover where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078030
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, ts, reading, depth Sensor: rainfall | fields: level, depth, lon, lat Task: Fetch lat from drought_index where value is greater than the count of of value in rainfall for matching ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078031
train
v3
Sensor network script: Node: air_quality | code: ref | fields: lat, lon, reading, qc Sensor: temperature | fields: depth, level, qc, value Task: Fetch value from air_quality where value is greater than the count of of reading in temperature for matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078032
train
v3
Sensor network script: Node: humidity | code: thr | fields: lon, reading, ts, depth Sensor: lightning | fields: lat, value, lon, level Task: Retrieve level from humidity with depth above the AVG(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078033
train
v1
Sensor network script: Node: pressure | code: clr | fields: depth, qc, value, ts Sensor: dew_point | fields: lon, depth, level, reading Task: Retrieve lon from pressure whose depth is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078034
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: type, unit, depth, lon Sensor: turbidity | fields: unit, type, lon, level Task: Retrieve value from wind_speed whose type is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078035
train
v2
Sensor network script: Node: uv_index | code: prt | fields: lat, unit, lon, qc Sensor: cloud_cover | fields: lat, lon, type, depth Task: Fetch depth from uv_index that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078036
train
v1
Sensor network script: Node: temperature | code: gst | fields: level, qc, lat, unit Sensor: turbidity | fields: lon, ts, depth, lat Task: Fetch value from temperature where unit exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078037
train
v1
Sensor network script: Node: evaporation | code: gst | fields: value, qc, ts, depth Sensor: temperature | fields: qc, type, depth, reading Task: Retrieve depth from evaporation whose depth is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078038
train
v1
Sensor network script: Node: lightning | code: gst | fields: depth, qc, value, level Sensor: cloud_cover | fields: level, value, type, lon Task: Get lat from lightning where depth appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078039
train
v2
Sensor network script: Node: dew_point | code: clr | fields: ts, depth, value, reading Sensor: lightning | fields: type, level, ts, depth Task: Fetch level from dew_point that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078040
train
v1
Sensor network script: Node: sunlight | code: hub | fields: qc, lat, type, level Sensor: uv_index | fields: ts, value, unit, reading Task: Fetch lat from sunlight where unit exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078041
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: lon, ts, value, qc Sensor: pressure | fields: level, type, qc, lon Task: Get depth from soil_moisture where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078042
train
v2
Sensor network script: Node: frost | code: thr | fields: type, reading, lon, qc Sensor: pressure | fields: reading, lon, qc, ts Task: Fetch lat from frost that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078043
train
v3
Sensor network script: Node: rainfall | code: stn | fields: depth, lat, level, reading Sensor: wind_speed | fields: lat, qc, type, unit Task: Get lon from rainfall where value exceeds the count of value from wind_speed for the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078044
train
v1
Sensor network script: Node: uv_index | code: ref | fields: ts, reading, depth, unit Sensor: sunlight | fields: depth, type, unit, lon Task: Get lat from uv_index where qc appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078045
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lon, qc, value, unit Sensor: sunlight | fields: depth, qc, value, lon Task: Retrieve level from snow_depth with reading above the COUNT(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078046
train
v2
Sensor network script: Node: visibility | code: thr | fields: qc, lat, lon, value Sensor: humidity | fields: qc, level, lon, unit Task: Retrieve depth from visibility that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078047
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: level, unit, lon, depth Sensor: temperature | fields: level, ts, lat, type Task: Fetch value from wind_speed where ts exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078048
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: unit, value, depth, ts Sensor: humidity | fields: lat, reading, depth, qc Task: Fetch lat from snow_depth where depth is greater than the total of reading in humidity for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078049
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: ts, qc, lon, lat Sensor: lightning | fields: depth, type, value, lat Task: Fetch lon from snow_depth where depth is greater than the maximum of depth in lightning for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078050
train
v3
Sensor network script: Node: sunlight | code: stn | fields: lat, type, qc, value Sensor: cloud_cover | fields: type, ts, lat, value Task: Get lon from sunlight where value exceeds the average value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078051
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, lat, qc, value Sensor: cloud_cover | fields: reading, value, lat, depth Task: Get depth from soil_moisture where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078052
train
v1
Sensor network script: Node: dew_point | code: stn | fields: lat, depth, lon, reading Sensor: wind_speed | fields: level, lat, ts, reading Task: Fetch depth from dew_point where type exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078053
train
v3
Sensor network script: Node: lightning | code: clr | fields: lon, lat, depth, type Sensor: drought_index | fields: qc, reading, unit, value Task: Fetch lat from lightning where depth is greater than the total of reading in drought_index for matching qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078054
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lon, value, depth, type Sensor: dew_point | fields: level, lon, depth, value Task: Retrieve lat from evaporation that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078055
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: level, qc, type, ts Sensor: humidity | fields: lat, qc, value, type Task: Fetch value from soil_moisture where reading is greater than the average of reading in humidity for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078056
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: value, reading, lat, level Sensor: visibility | fields: depth, reading, lon, value Task: Retrieve reading from cloud_cover whose unit is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078057
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lon, level, value, depth Sensor: snow_depth | fields: lon, ts, type, depth Task: Get value from evaporation where type appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078058
train
v3
Sensor network script: Node: rainfall | code: stn | fields: ts, level, lat, lon Sensor: temperature | fields: level, lat, value, type Task: Fetch reading from rainfall where reading is greater than the average of depth in temperature for matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078059
train
v1
Sensor network script: Node: frost | code: stn | fields: depth, reading, unit, ts Sensor: visibility | fields: reading, depth, value, ts Task: Get reading from frost where unit appears in visibility readings with matching type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078060
train
v1
Sensor network script: Node: visibility | code: mst | fields: type, depth, qc, reading Sensor: temperature | fields: reading, type, level, unit Task: Fetch value from visibility where unit exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078061
train
v2
Sensor network script: Node: drought_index | code: mst | fields: level, reading, value, qc Sensor: humidity | fields: level, lon, depth, unit Task: Get lon from drought_index where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078062
train
v1
Sensor network script: Node: drought_index | code: ref | fields: unit, lat, ts, type Sensor: pressure | fields: unit, ts, type, lon Task: Get level from drought_index where type appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078063
train
v2
Sensor network script: Node: turbidity | code: mst | fields: lon, ts, qc, level Sensor: soil_moisture | fields: level, reading, ts, depth Task: Get lat from turbidity where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078064
train
v1
Sensor network script: Node: lightning | code: mst | fields: ts, depth, lat, qc Sensor: humidity | fields: lat, depth, lon, level Task: Fetch lon from lightning where unit exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078065
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: ts, lon, unit, depth Sensor: snow_depth | fields: qc, lat, depth, reading Task: Fetch value from cloud_cover where depth is greater than the count of of value in snow_depth for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078066
train
v1
Sensor network script: Node: humidity | code: gst | fields: depth, unit, lon, lat Sensor: turbidity | fields: lon, reading, ts, depth Task: Retrieve reading from humidity whose type is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078067
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: reading, type, value, qc Sensor: uv_index | fields: lat, type, reading, ts Task: Get lat from cloud_cover where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078068
train
v3
Sensor network script: Node: drought_index | code: ref | fields: ts, lat, lon, value Sensor: snow_depth | fields: qc, type, unit, reading Task: Retrieve lon from drought_index with depth above the MAX(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078069
train
v3
Sensor network script: Node: pressure | code: hub | fields: level, depth, lon, qc Sensor: lightning | fields: value, type, lat, lon Task: Fetch reading from pressure where reading is greater than the count of of reading in lightning for matching type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078070
train
v2
Sensor network script: Node: lightning | code: hub | fields: level, ts, unit, lat Sensor: visibility | fields: lon, reading, level, value Task: Fetch reading from lightning that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078071
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lat, unit, level, ts Sensor: cloud_cover | fields: ts, reading, value, depth Task: Fetch lon from snow_depth where depth is greater than the maximum of value in cloud_cover for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078072
train
v1
Sensor network script: Node: rainfall | code: clr | fields: value, type, ts, unit Sensor: drought_index | fields: type, unit, lat, reading Task: Get value from rainfall where ts appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078073
train
v1
Sensor network script: Node: uv_index | code: hub | fields: ts, unit, reading, depth Sensor: turbidity | fields: type, value, reading, lon Task: Retrieve depth from uv_index whose ts is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078074
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lat, qc, lon, type Sensor: sunlight | fields: lat, unit, lon, qc Task: Get level from soil_moisture where qc appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078075
train
v3
Sensor network script: Node: air_quality | code: mst | fields: qc, level, depth, unit Sensor: pressure | fields: value, lat, ts, level Task: Fetch reading from air_quality where depth is greater than the minimum of reading in pressure for matching qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078076
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lat, reading, type, lon Sensor: dew_point | fields: level, depth, value, unit Task: Fetch reading from uv_index where value is greater than the count of of value in dew_point for matching type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078077
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: reading, lat, level, depth Sensor: pressure | fields: ts, qc, reading, depth Task: Retrieve reading from snow_depth whose depth is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078078
train
v2
Sensor network script: Node: humidity | code: thr | fields: depth, reading, value, unit Sensor: snow_depth | fields: qc, ts, unit, lon Task: Fetch level from humidity that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078079
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: depth, lon, lat, reading Sensor: air_quality | fields: qc, level, lon, reading Task: Get reading from wind_speed where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078080
train
v3
Sensor network script: Node: sunlight | code: stn | fields: value, ts, lon, reading Sensor: uv_index | fields: ts, lon, unit, value Task: Fetch value from sunlight where value is greater than the count of of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078081
train
v1
Sensor network script: Node: dew_point | code: hub | fields: qc, ts, lon, reading Sensor: drought_index | fields: level, depth, lon, lat Task: Get lon from dew_point where ts appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078082
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: reading, value, lat, ts Sensor: visibility | fields: reading, unit, ts, type Task: Retrieve reading from wind_speed whose unit is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078083
train
v2
Sensor network script: Node: frost | code: prt | fields: lon, level, type, ts Sensor: wind_speed | fields: type, depth, reading, unit Task: Retrieve depth from frost that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078084
train
v3
Sensor network script: Node: dew_point | code: gst | fields: ts, depth, reading, lat Sensor: humidity | fields: depth, unit, value, type Task: Fetch value from dew_point where value is greater than the total of value in humidity for matching type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078085
train
v3
Sensor network script: Node: temperature | code: clr | fields: depth, level, type, ts Sensor: humidity | fields: qc, unit, lat, level Task: Fetch value from temperature where value is greater than the count of of depth in humidity for matching depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078086
train
v3
Sensor network script: Node: temperature | code: gst | fields: lon, value, depth, qc Sensor: uv_index | fields: reading, level, qc, lat Task: Fetch level from temperature where reading is greater than the average of reading in uv_index for matching qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078087
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: unit, lat, lon, ts Sensor: dew_point | fields: value, ts, qc, reading Task: Retrieve lat from wind_speed that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078088
train
v3
Sensor network script: Node: turbidity | code: thr | fields: depth, unit, ts, qc Sensor: uv_index | fields: level, lat, value, qc Task: Fetch level from turbidity where depth is greater than the minimum of reading in uv_index for matching ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078089
train
v1
Sensor network script: Node: visibility | code: thr | fields: value, depth, level, lat Sensor: cloud_cover | fields: lon, depth, level, value Task: Retrieve level from visibility whose type is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078090
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: unit, lat, depth, reading Sensor: sunlight | fields: lat, value, unit, qc Task: Fetch lat from snow_depth where reading is greater than the average of reading in sunlight for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078091
train
v2
Sensor network script: Node: rainfall | code: stn | fields: reading, lon, type, value Sensor: visibility | fields: reading, ts, unit, value Task: Get reading from rainfall where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078092
train
v3
Sensor network script: Node: frost | code: ref | fields: reading, unit, qc, lon Sensor: visibility | fields: lon, lat, level, ts Task: Retrieve reading from frost with value above the AVG(depth) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078093
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: level, ts, qc, depth Sensor: snow_depth | fields: qc, lon, level, unit Task: Get reading from wind_speed where depth appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078094
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: depth, type, ts, level Sensor: pressure | fields: ts, depth, qc, lon Task: Get level from wind_speed where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078095
train
v3
Sensor network script: Node: visibility | code: prt | fields: value, unit, level, lat Sensor: wind_speed | fields: lat, unit, lon, type Task: Fetch level from visibility where value is greater than the average of depth in wind_speed for matching unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078096
train
v2
Sensor network script: Node: dew_point | code: thr | fields: lat, lon, unit, qc Sensor: lightning | fields: reading, depth, lon, unit Task: Get level from dew_point where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078097
train
v3
Sensor network script: Node: frost | code: prt | fields: value, unit, depth, level Sensor: dew_point | fields: reading, depth, lon, ts Task: Retrieve lat from frost with reading above the COUNT(depth) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078098
train
v3
Sensor network script: Node: dew_point | code: stn | fields: ts, level, unit, depth Sensor: wind_speed | fields: unit, level, qc, type Task: Get depth from dew_point where value exceeds the count of value from wind_speed for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078099
train