variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: snow_depth | code: mst | fields: unit, qc, ts, type Sensor: temperature | fields: depth, ts, value, unit Task: Retrieve lat from snow_depth whose unit is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081800
train
v1
Sensor network script: Node: air_quality | code: hub | fields: ts, depth, type, qc Sensor: sunlight | fields: value, reading, type, lon Task: Get lon from air_quality where depth appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081801
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: lon, level, ts, qc Sensor: dew_point | fields: unit, ts, level, lon Task: Fetch value from snow_depth where ts exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081802
train
v2
Sensor network script: Node: evaporation | code: hub | fields: value, type, qc, lat Sensor: temperature | fields: ts, unit, value, qc Task: Get reading from evaporation where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081803
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: level, ts, qc, type Sensor: pressure | fields: value, lon, ts, qc Task: Get lat from wind_speed where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081804
train
v3
Sensor network script: Node: air_quality | code: clr | fields: ts, type, lat, lon Sensor: frost | fields: lon, ts, depth, level Task: Fetch lat from air_quality where value is greater than the minimum of depth in frost for matching type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081805
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: lon, unit, ts, qc Sensor: lightning | fields: depth, ts, value, reading Task: Fetch lat from soil_moisture that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081806
train
v2
Sensor network script: Node: air_quality | code: prt | fields: reading, qc, level, ts Sensor: wind_speed | fields: lat, ts, lon, value Task: Retrieve value from air_quality that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081807
train
v3
Sensor network script: Node: pressure | code: thr | fields: reading, lat, depth, level Sensor: lightning | fields: ts, qc, lon, level Task: Retrieve depth from pressure with value above the MIN(value) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081808
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: value, unit, lat, depth Sensor: frost | fields: lat, lon, value, level Task: Retrieve lat from snow_depth with value above the SUM(reading) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081809
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: lon, qc, unit, value Sensor: dew_point | fields: value, lat, unit, lon Task: Fetch level from soil_moisture that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081810
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lat, lon, level, reading Sensor: uv_index | fields: depth, lat, qc, lon Task: Fetch lat from evaporation that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081811
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: ts, level, unit, reading Sensor: visibility | fields: lat, reading, qc, value Task: Get lat from soil_moisture where reading exceeds the maximum reading from visibility for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081812
train
v3
Sensor network script: Node: uv_index | code: prt | fields: value, type, level, depth Sensor: frost | fields: reading, depth, lat, qc Task: Fetch level from uv_index where reading is greater than the minimum of value in frost for matching type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081813
train
v2
Sensor network script: Node: lightning | code: prt | fields: lat, lon, ts, value Sensor: wind_speed | fields: qc, ts, lat, depth Task: Fetch reading from lightning that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081814
train
v2
Sensor network script: Node: sunlight | code: stn | fields: value, depth, unit, reading Sensor: frost | fields: lat, depth, qc, ts Task: Get value from sunlight where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081815
train
v1
Sensor network script: Node: air_quality | code: thr | fields: value, depth, type, unit Sensor: uv_index | fields: unit, level, ts, lat Task: Fetch lon from air_quality where type exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081816
train
v2
Sensor network script: Node: drought_index | code: stn | fields: value, ts, unit, lon Sensor: air_quality | fields: unit, lat, reading, qc Task: Fetch level from drought_index that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081817
train
v3
Sensor network script: Node: air_quality | code: prt | fields: level, qc, lon, lat Sensor: snow_depth | fields: type, depth, value, qc Task: Fetch lon from air_quality where reading is greater than the count of of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081818
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: qc, reading, ts, value Sensor: drought_index | fields: ts, lon, value, type Task: Fetch level from wind_speed where ts exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081819
train
v3
Sensor network script: Node: air_quality | code: mst | fields: value, lon, depth, unit Sensor: humidity | fields: level, unit, lat, qc Task: Fetch depth from air_quality where value is greater than the count of of value in humidity for matching ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081820
train
v1
Sensor network script: Node: uv_index | code: hub | fields: type, level, value, lat Sensor: visibility | fields: type, level, reading, lon Task: Fetch reading from uv_index where depth exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081821
train
v3
Sensor network script: Node: frost | code: clr | fields: ts, depth, level, unit Sensor: turbidity | fields: ts, unit, level, depth Task: Retrieve reading from frost with depth above the COUNT(depth) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081822
train
v2
Sensor network script: Node: drought_index | code: gst | fields: ts, reading, type, qc Sensor: uv_index | fields: lat, unit, qc, value Task: Fetch level from drought_index that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081823
train
v3
Sensor network script: Node: visibility | code: clr | fields: qc, ts, depth, lat Sensor: turbidity | fields: lon, lat, level, unit Task: Retrieve depth from visibility with depth above the MAX(depth) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081824
train
v2
Sensor network script: Node: pressure | code: ref | fields: qc, level, lon, reading Sensor: rainfall | fields: value, type, depth, level Task: Fetch lat from pressure that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081825
train
v1
Sensor network script: Node: frost | code: thr | fields: value, depth, lat, unit Sensor: rainfall | fields: value, type, reading, unit Task: Retrieve level from frost whose ts is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081826
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lat, value, level, qc Sensor: lightning | fields: depth, ts, reading, level Task: Fetch level from drought_index where type exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081827
train
v1
Sensor network script: Node: temperature | code: hub | fields: value, ts, reading, depth Sensor: drought_index | fields: reading, unit, type, lat Task: Retrieve lon from temperature whose depth is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081828
train
v2
Sensor network script: Node: pressure | code: gst | fields: qc, depth, lon, value Sensor: humidity | fields: value, unit, reading, lon Task: Retrieve reading from pressure that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081829
train
v1
Sensor network script: Node: air_quality | code: stn | fields: value, qc, unit, reading Sensor: uv_index | fields: level, qc, unit, lat Task: Fetch level from air_quality where ts exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081830
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: lat, reading, qc, level Sensor: lightning | fields: qc, unit, depth, value Task: Retrieve depth from cloud_cover that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081831
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: lat, depth, lon, ts Sensor: wind_speed | fields: value, unit, reading, depth Task: Retrieve depth from soil_moisture with value above the COUNT(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081832
train
v1
Sensor network script: Node: pressure | code: hub | fields: lat, depth, lon, ts Sensor: visibility | fields: lat, ts, value, lon Task: Retrieve lat from pressure whose qc is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081833
train
v3
Sensor network script: Node: dew_point | code: clr | fields: type, qc, depth, reading Sensor: lightning | fields: value, depth, reading, qc Task: Fetch lat from dew_point where depth is greater than the total of depth in lightning for matching ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081834
train
v1
Sensor network script: Node: turbidity | code: mst | fields: ts, level, qc, lon Sensor: air_quality | fields: ts, level, lat, value Task: Fetch value from turbidity where type exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081835
train
v3
Sensor network script: Node: air_quality | code: ref | fields: unit, lat, value, reading Sensor: turbidity | fields: lon, qc, type, unit Task: Fetch reading from air_quality where reading is greater than the average of depth in turbidity for matching depth. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081836
train
v3
Sensor network script: Node: drought_index | code: ref | fields: lon, reading, ts, type Sensor: uv_index | fields: ts, reading, depth, lat Task: Get reading from drought_index where reading exceeds the minimum value from uv_index for the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081837
train
v2
Sensor network script: Node: dew_point | code: stn | fields: level, reading, unit, lat Sensor: frost | fields: lon, level, depth, qc Task: Retrieve level from dew_point that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081838
train
v3
Sensor network script: Node: drought_index | code: hub | fields: level, ts, unit, depth Sensor: uv_index | fields: level, lon, ts, depth Task: Retrieve value from drought_index with value above the MIN(reading) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081839
train
v1
Sensor network script: Node: visibility | code: hub | fields: type, ts, reading, lat Sensor: air_quality | fields: level, type, unit, value Task: Retrieve lon from visibility whose type is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081840
train
v3
Sensor network script: Node: lightning | code: thr | fields: lat, depth, type, level Sensor: drought_index | fields: qc, value, level, type Task: Fetch value from lightning where depth is greater than the total of depth in drought_index for matching type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081841
train
v3
Sensor network script: Node: humidity | code: mst | fields: level, unit, type, lat Sensor: soil_moisture | fields: unit, depth, lon, type Task: Fetch level from humidity where reading is greater than the total of depth in soil_moisture for matching unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081842
train
v1
Sensor network script: Node: dew_point | code: prt | fields: qc, lon, type, lat Sensor: soil_moisture | fields: lat, value, level, depth Task: Retrieve depth from dew_point whose ts is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081843
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: reading, value, unit, lon Sensor: lightning | fields: lon, value, type, level Task: Get depth from wind_speed where qc appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081844
train
v1
Sensor network script: Node: uv_index | code: thr | fields: ts, lat, reading, type Sensor: snow_depth | fields: ts, type, lon, qc Task: Fetch depth from uv_index where type exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081845
train
v2
Sensor network script: Node: turbidity | code: ref | fields: ts, value, depth, qc Sensor: lightning | fields: lat, level, ts, value Task: Retrieve level from turbidity that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081846
train
v2
Sensor network script: Node: lightning | code: gst | fields: unit, reading, level, lon Sensor: dew_point | fields: qc, unit, lon, value Task: Fetch value from lightning that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081847
train
v2
Sensor network script: Node: lightning | code: thr | fields: type, ts, reading, value Sensor: evaporation | fields: ts, depth, type, unit Task: Retrieve depth from lightning that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081848
train
v3
Sensor network script: Node: temperature | code: mst | fields: type, qc, depth, unit Sensor: drought_index | fields: ts, value, lon, reading Task: Get lon from temperature where value exceeds the count of value from drought_index for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081849
train
v3
Sensor network script: Node: pressure | code: thr | fields: level, depth, ts, qc Sensor: frost | fields: lon, ts, level, depth Task: Fetch depth from pressure where reading is greater than the minimum of reading in frost for matching unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "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_081850
train
v1
Sensor network script: Node: pressure | code: mst | fields: lon, qc, reading, depth Sensor: rainfall | fields: level, lat, qc, depth Task: Get value from pressure where depth appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081851
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lat, value, unit, lon Sensor: snow_depth | fields: qc, depth, type, level Task: Fetch level from soil_moisture that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081852
train
v3
Sensor network script: Node: drought_index | code: mst | fields: reading, level, lon, lat Sensor: visibility | fields: reading, value, level, qc Task: Get depth from drought_index where reading exceeds the maximum reading from visibility for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081853
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: depth, type, reading, value Sensor: soil_moisture | fields: lat, unit, reading, level Task: Fetch value from wind_speed where unit exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081854
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: type, ts, value, level Sensor: soil_moisture | fields: ts, lat, type, qc Task: Retrieve level from cloud_cover whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081855
train
v1
Sensor network script: Node: visibility | code: prt | fields: reading, depth, value, unit Sensor: turbidity | fields: lat, ts, unit, lon Task: Get value from visibility where unit appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081856
train
v1
Sensor network script: Node: temperature | code: mst | fields: value, level, ts, reading Sensor: evaporation | fields: reading, type, depth, level Task: Retrieve reading from temperature whose ts is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081857
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: level, type, lat, unit Sensor: pressure | fields: qc, type, value, lat Task: Fetch depth from soil_moisture where qc exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081858
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: level, value, lon, unit Sensor: visibility | fields: ts, type, reading, lat Task: Get lon from soil_moisture where type appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081859
train
v3
Sensor network script: Node: dew_point | code: stn | fields: ts, unit, depth, type Sensor: pressure | fields: value, level, reading, ts Task: Retrieve lon from dew_point with depth above the AVG(value) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081860
train
v1
Sensor network script: Node: pressure | code: gst | fields: unit, lon, depth, qc Sensor: uv_index | fields: depth, qc, value, unit Task: Get level from pressure where qc appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081861
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: value, level, ts, lat Sensor: dew_point | fields: qc, lon, unit, depth Task: Get lat from soil_moisture where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081862
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: ts, type, lon, lat Sensor: rainfall | fields: ts, value, lat, reading Task: Retrieve level from soil_moisture that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081863
train
v2
Sensor network script: Node: drought_index | code: stn | fields: unit, lon, reading, type Sensor: pressure | fields: depth, ts, level, qc Task: Get reading from drought_index where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081864
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: depth, qc, unit, lat Sensor: snow_depth | fields: lon, lat, type, depth Task: Fetch lat from cloud_cover where type exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081865
train
v1
Sensor network script: Node: uv_index | code: hub | fields: level, lon, qc, ts Sensor: visibility | fields: ts, lat, value, unit Task: Fetch reading from uv_index where qc exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081866
train
v3
Sensor network script: Node: visibility | code: mst | fields: type, depth, ts, reading Sensor: wind_speed | fields: lon, depth, value, type Task: Get level from visibility where value exceeds the average value from wind_speed for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081867
train
v2
Sensor network script: Node: dew_point | code: stn | fields: value, ts, type, level Sensor: soil_moisture | fields: depth, lon, ts, lat Task: Get lat from dew_point where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081868
train
v1
Sensor network script: Node: sunlight | code: stn | fields: unit, reading, depth, lat Sensor: evaporation | fields: level, qc, depth, lon Task: Fetch lat from sunlight where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081869
train
v1
Sensor network script: Node: temperature | code: ref | fields: type, value, reading, depth Sensor: sunlight | fields: lon, depth, lat, type Task: Retrieve lon from temperature whose unit is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081870
train
v1
Sensor network script: Node: humidity | code: prt | fields: depth, value, ts, unit Sensor: temperature | fields: ts, type, lat, reading Task: Get depth from humidity where ts appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081871
train
v1
Sensor network script: Node: pressure | code: ref | fields: unit, value, lat, depth Sensor: drought_index | fields: value, qc, depth, lat Task: Get reading from pressure where unit appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081872
train
v1
Sensor network script: Node: temperature | code: hub | fields: unit, lat, level, lon Sensor: drought_index | fields: lon, ts, lat, level Task: Get lon from temperature where ts appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081873
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, depth, qc, unit Sensor: pressure | fields: reading, unit, lon, lat Task: Retrieve level from uv_index that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081874
train
v1
Sensor network script: Node: dew_point | code: hub | fields: lon, ts, unit, depth Sensor: cloud_cover | fields: type, qc, reading, lat Task: Get lon from dew_point where unit appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081875
train
v2
Sensor network script: Node: humidity | code: clr | fields: reading, ts, lat, depth Sensor: sunlight | fields: lon, lat, unit, type Task: Get reading from humidity where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081876
train
v2
Sensor network script: Node: pressure | code: hub | fields: lon, unit, value, level Sensor: frost | fields: value, reading, type, depth Task: Retrieve depth from pressure that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081877
train
v2
Sensor network script: Node: pressure | code: stn | fields: qc, value, lat, unit Sensor: soil_moisture | fields: type, depth, ts, unit Task: Get lon from pressure where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081878
train
v3
Sensor network script: Node: temperature | code: clr | fields: qc, depth, level, value Sensor: evaporation | fields: ts, depth, level, value Task: Fetch reading from temperature where depth is greater than the minimum of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081879
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: unit, ts, type, qc Sensor: sunlight | fields: unit, lon, qc, depth Task: Fetch lat from soil_moisture where depth exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081880
train
v1
Sensor network script: Node: humidity | code: hub | fields: unit, depth, lat, qc Sensor: temperature | fields: reading, lon, value, depth Task: Fetch lon from humidity where unit exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081881
train
v3
Sensor network script: Node: temperature | code: stn | fields: ts, qc, value, lon Sensor: soil_moisture | fields: type, unit, qc, reading Task: Retrieve level from temperature with value above the SUM(value) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081882
train
v1
Sensor network script: Node: evaporation | code: gst | fields: unit, depth, reading, ts Sensor: cloud_cover | fields: unit, lon, ts, depth Task: Get lat from evaporation where type appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081883
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: level, lon, value, ts Sensor: turbidity | fields: lon, ts, type, lat Task: Retrieve value from cloud_cover that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081884
train
v3
Sensor network script: Node: air_quality | code: stn | fields: unit, qc, reading, depth Sensor: visibility | fields: depth, lon, reading, ts Task: Retrieve lon from air_quality with value above the MAX(reading) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081885
train
v1
Sensor network script: Node: rainfall | code: hub | fields: type, qc, ts, depth Sensor: humidity | fields: lon, depth, value, lat Task: Fetch reading from rainfall where qc exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081886
train
v3
Sensor network script: Node: turbidity | code: mst | fields: ts, reading, depth, level Sensor: air_quality | fields: lat, qc, level, reading Task: Get depth from turbidity where reading exceeds the count of depth from air_quality for the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081887
train
v1
Sensor network script: Node: turbidity | code: ref | fields: reading, qc, lat, value Sensor: dew_point | fields: lat, lon, type, level Task: Get reading from turbidity where type appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081888
train
v2
Sensor network script: Node: visibility | code: clr | fields: type, value, lon, depth Sensor: air_quality | fields: depth, reading, ts, level Task: Get lat from visibility where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081889
train
v1
Sensor network script: Node: drought_index | code: stn | fields: type, ts, reading, level Sensor: cloud_cover | fields: ts, depth, lon, value Task: Get depth from drought_index where depth appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081890
train
v2
Sensor network script: Node: temperature | code: prt | fields: type, lat, reading, qc Sensor: uv_index | fields: lon, reading, type, lat Task: Retrieve level from temperature that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081891
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: level, reading, type, qc Sensor: dew_point | fields: qc, unit, depth, ts Task: Retrieve level from wind_speed with reading above the MAX(reading) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081892
train
v2
Sensor network script: Node: air_quality | code: stn | fields: level, type, value, reading Sensor: dew_point | fields: unit, level, reading, lon Task: Get level from air_quality where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081893
train
v1
Sensor network script: Node: uv_index | code: mst | fields: qc, unit, depth, lat Sensor: turbidity | fields: type, depth, unit, value Task: Get level from uv_index where depth appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081894
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lat, unit, qc, ts Sensor: rainfall | fields: level, unit, value, qc Task: Fetch lat from soil_moisture where depth is greater than the maximum of reading in rainfall for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081895
train
v2
Sensor network script: Node: evaporation | code: thr | fields: qc, ts, reading, unit Sensor: humidity | fields: lon, level, unit, type Task: Get depth from evaporation where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081896
train
v3
Sensor network script: Node: rainfall | code: mst | fields: unit, level, lat, value Sensor: lightning | fields: reading, unit, value, ts Task: Retrieve value from rainfall with value above the COUNT(reading) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081897
train
v1
Sensor network script: Node: lightning | code: prt | fields: type, depth, level, qc Sensor: pressure | fields: level, type, qc, ts Task: Fetch lat from lightning where type exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081898
train
v2
Sensor network script: Node: uv_index | code: ref | fields: depth, level, value, lon Sensor: cloud_cover | fields: unit, reading, depth, lat Task: Fetch lat from uv_index that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081899
train