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: rainfall | code: gst | fields: qc, unit, type, value Sensor: turbidity | fields: qc, level, type, lon Task: Fetch level from rainfall that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074900
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, value, depth, type Sensor: temperature | fields: level, unit, type, ts Task: Retrieve reading from snow_depth whose ts is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074901
train
v1
Sensor network script: Node: turbidity | code: clr | fields: reading, unit, lat, ts Sensor: wind_speed | fields: level, type, lon, ts Task: Get level from turbidity where qc appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074902
train
v1
Sensor network script: Node: turbidity | code: mst | fields: ts, reading, level, unit Sensor: dew_point | fields: type, reading, depth, unit Task: Retrieve level from turbidity whose ts is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074903
train
v1
Sensor network script: Node: evaporation | code: mst | fields: lat, value, level, reading Sensor: drought_index | fields: qc, ts, level, value Task: Fetch lon from evaporation where qc exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074904
train
v1
Sensor network script: Node: turbidity | code: clr | fields: unit, qc, depth, level Sensor: dew_point | fields: type, lon, depth, unit Task: Get value from turbidity where type appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074905
train
v2
Sensor network script: Node: frost | code: thr | fields: depth, value, lon, reading Sensor: cloud_cover | fields: level, reading, lon, ts Task: Get reading from frost where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074906
train
v2
Sensor network script: Node: evaporation | code: clr | fields: qc, level, unit, value Sensor: turbidity | fields: ts, qc, type, unit Task: Retrieve lon from evaporation that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074907
train
v3
Sensor network script: Node: humidity | code: hub | fields: ts, unit, qc, lat Sensor: frost | fields: depth, lat, lon, ts Task: Fetch lon from humidity where depth is greater than the average of value in frost for matching ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074908
train
v1
Sensor network script: Node: dew_point | code: stn | fields: lon, depth, level, ts Sensor: air_quality | fields: ts, unit, lat, lon Task: Retrieve lat from dew_point whose type is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074909
train
v3
Sensor network script: Node: evaporation | code: clr | fields: lon, unit, lat, qc Sensor: temperature | fields: level, value, type, lat Task: Get lon from evaporation where depth exceeds the minimum value from temperature for the same unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074910
train
v3
Sensor network script: Node: dew_point | code: thr | fields: unit, ts, value, type Sensor: frost | fields: depth, value, unit, lon Task: Fetch level from dew_point where reading is greater than the count of of depth in frost for matching unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074911
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: level, depth, unit, ts Sensor: wind_speed | fields: unit, reading, lat, level Task: Fetch value from soil_moisture where ts exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074912
train
v1
Sensor network script: Node: frost | code: thr | fields: lat, unit, qc, value Sensor: uv_index | fields: type, lat, unit, ts Task: Get depth from frost where depth appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074913
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: depth, reading, ts, lon Sensor: humidity | fields: lon, unit, ts, reading Task: Retrieve level from wind_speed with reading above the AVG(reading) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074914
train
v1
Sensor network script: Node: humidity | code: thr | fields: lon, reading, qc, ts Sensor: sunlight | fields: depth, ts, qc, type Task: Get reading from humidity where type appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074915
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: depth, lon, type, lat Sensor: rainfall | fields: qc, value, lon, unit Task: Retrieve value from snow_depth that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074916
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: value, ts, qc, level Sensor: frost | fields: lat, type, depth, unit Task: Retrieve lon from wind_speed that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074917
train
v2
Sensor network script: Node: humidity | code: clr | fields: type, qc, level, unit Sensor: dew_point | fields: value, type, qc, ts Task: Fetch reading from humidity that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074918
train
v1
Sensor network script: Node: drought_index | code: stn | fields: level, qc, type, lon Sensor: cloud_cover | fields: ts, lon, type, depth Task: Fetch level from drought_index where type exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074919
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: lat, lon, level, type Sensor: uv_index | fields: ts, unit, qc, value Task: Retrieve depth from wind_speed whose depth is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074920
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, lat, reading, type Sensor: air_quality | fields: depth, type, ts, level Task: Retrieve lon from uv_index with depth above the MAX(depth) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074921
train
v1
Sensor network script: Node: evaporation | code: thr | fields: depth, value, reading, level Sensor: drought_index | fields: depth, level, value, unit Task: Fetch lon from evaporation where depth exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074922
train
v1
Sensor network script: Node: turbidity | code: clr | fields: lat, reading, lon, level Sensor: evaporation | fields: reading, type, lat, level Task: Fetch lat from turbidity where ts exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074923
train
v2
Sensor network script: Node: rainfall | code: thr | fields: value, reading, ts, lon Sensor: visibility | fields: type, lat, lon, unit Task: Get depth from rainfall where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074924
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: lon, qc, depth, unit Sensor: lightning | fields: lon, value, level, qc Task: Fetch depth from soil_moisture that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074925
train
v1
Sensor network script: Node: evaporation | code: prt | fields: lat, depth, qc, unit Sensor: turbidity | fields: type, level, ts, qc Task: Fetch depth from evaporation where unit exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074926
train
v3
Sensor network script: Node: sunlight | code: mst | fields: unit, level, depth, lat Sensor: snow_depth | fields: reading, lat, type, level Task: Retrieve value from sunlight with reading above the COUNT(reading) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074927
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: ts, reading, unit, depth Sensor: soil_moisture | fields: level, unit, ts, type Task: Get lat from snow_depth where unit appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074928
train
v3
Sensor network script: Node: pressure | code: hub | fields: value, type, unit, qc Sensor: wind_speed | fields: unit, level, depth, ts Task: Get reading from pressure where depth exceeds the average depth from wind_speed for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074929
train
v1
Sensor network script: Node: lightning | code: thr | fields: lat, unit, depth, ts Sensor: pressure | fields: depth, qc, lon, reading Task: Fetch reading from lightning where unit exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074930
train
v1
Sensor network script: Node: frost | code: thr | fields: depth, value, level, reading Sensor: lightning | fields: lat, lon, qc, reading Task: Retrieve depth from frost whose unit is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074931
train
v3
Sensor network script: Node: drought_index | code: prt | fields: type, lat, depth, value Sensor: sunlight | fields: type, level, unit, value Task: Retrieve lon from drought_index with value above the COUNT(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074932
train
v2
Sensor network script: Node: dew_point | code: gst | fields: level, reading, value, qc Sensor: rainfall | fields: ts, value, depth, lon Task: Retrieve level from dew_point that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074933
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: unit, lat, type, ts Sensor: soil_moisture | fields: unit, type, level, qc Task: Fetch lon from snow_depth where value is greater than the count of of depth in soil_moisture for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "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_074934
train
v1
Sensor network script: Node: frost | code: thr | fields: value, lon, level, qc Sensor: wind_speed | fields: lon, qc, unit, level Task: Retrieve depth from frost whose type is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074935
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: type, depth, lon, level Sensor: dew_point | fields: qc, lon, ts, lat Task: Get value from snow_depth where qc appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074936
train
v3
Sensor network script: Node: dew_point | code: stn | fields: unit, reading, depth, level Sensor: air_quality | fields: lat, level, ts, depth Task: Retrieve depth from dew_point with reading above the AVG(value) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074937
train
v3
Sensor network script: Node: sunlight | code: clr | fields: level, lat, unit, depth Sensor: lightning | fields: lon, value, type, qc Task: Get lon from sunlight where reading exceeds the count of depth from lightning for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074938
train
v1
Sensor network script: Node: evaporation | code: clr | fields: unit, qc, type, ts Sensor: humidity | fields: ts, reading, value, unit Task: Fetch lat from evaporation where ts exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074939
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: ts, type, level, lat Sensor: turbidity | fields: unit, reading, value, lon Task: Get value from soil_moisture where qc appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074940
train
v3
Sensor network script: Node: pressure | code: clr | fields: type, depth, unit, lon Sensor: frost | fields: unit, lon, depth, qc Task: Get reading from pressure where reading exceeds the count of value from frost for the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074941
train
v1
Sensor network script: Node: uv_index | code: thr | fields: qc, depth, unit, level Sensor: frost | fields: qc, ts, unit, lat Task: Retrieve lon from uv_index whose type is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074942
train
v1
Sensor network script: Node: evaporation | code: stn | fields: unit, level, value, lat Sensor: humidity | fields: type, qc, value, lon Task: Get lon from evaporation where ts appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074943
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: type, qc, unit, depth Sensor: soil_moisture | fields: lat, depth, value, reading Task: Retrieve depth from wind_speed with depth above the SUM(reading) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074944
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: lon, value, reading, lat Sensor: dew_point | fields: level, lat, ts, value Task: Fetch lon from cloud_cover that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074945
train
v3
Sensor network script: Node: dew_point | code: prt | fields: lon, type, lat, ts Sensor: rainfall | fields: ts, value, depth, lon Task: Fetch value from dew_point where value is greater than the average of depth in rainfall for matching depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074946
train
v3
Sensor network script: Node: sunlight | code: hub | fields: lat, reading, unit, lon Sensor: evaporation | fields: value, lon, qc, ts Task: Retrieve lon from sunlight with reading above the SUM(depth) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074947
train
v1
Sensor network script: Node: turbidity | code: ref | fields: value, lon, depth, reading Sensor: pressure | fields: ts, qc, unit, type Task: Fetch lon from turbidity where unit exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074948
train
v3
Sensor network script: Node: visibility | code: stn | fields: lon, level, reading, ts Sensor: drought_index | fields: qc, value, depth, level Task: Get reading from visibility where value exceeds the maximum reading from drought_index for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074949
train
v3
Sensor network script: Node: visibility | code: clr | fields: type, level, unit, lon Sensor: frost | fields: reading, qc, type, lat Task: Fetch level from visibility where depth is greater than the maximum of reading in frost for matching type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074950
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: qc, lat, value, depth Sensor: pressure | fields: depth, level, type, ts Task: Fetch lat from wind_speed where type exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074951
train
v2
Sensor network script: Node: dew_point | code: mst | fields: depth, qc, level, reading Sensor: air_quality | fields: unit, lat, ts, depth Task: Retrieve reading from dew_point that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074952
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lat, type, level, depth Sensor: wind_speed | fields: ts, level, depth, reading Task: Retrieve depth from soil_moisture whose type is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074953
train
v3
Sensor network script: Node: uv_index | code: stn | fields: value, level, reading, ts Sensor: turbidity | fields: ts, level, lat, type Task: Get level from uv_index where value exceeds the count of reading from turbidity for the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074954
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lon, unit, lat, reading Sensor: frost | fields: value, ts, lat, type Task: Get reading from uv_index where depth exceeds the minimum value from frost for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074955
train
v3
Sensor network script: Node: rainfall | code: stn | fields: ts, unit, depth, reading Sensor: snow_depth | fields: reading, ts, lon, type Task: Fetch lat from rainfall where depth is greater than the minimum of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074956
train
v3
Sensor network script: Node: pressure | code: gst | fields: reading, lon, lat, qc Sensor: lightning | fields: lon, reading, value, lat Task: Fetch value from pressure where reading is greater than the minimum of reading in lightning for matching qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074957
train
v1
Sensor network script: Node: rainfall | code: hub | fields: lat, reading, type, level Sensor: cloud_cover | fields: unit, type, depth, reading Task: Fetch lat from rainfall where unit exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074958
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: value, unit, depth, lat Sensor: uv_index | fields: ts, qc, lat, reading Task: Get value from snow_depth where depth exceeds the maximum reading from uv_index for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074959
train
v3
Sensor network script: Node: sunlight | code: hub | fields: unit, lon, level, depth Sensor: soil_moisture | fields: depth, lat, level, type Task: Retrieve value from sunlight with reading above the COUNT(reading) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074960
train
v1
Sensor network script: Node: lightning | code: stn | fields: level, reading, unit, lon Sensor: dew_point | fields: value, ts, reading, unit Task: Get lon from lightning where unit appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074961
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: value, lat, depth, lon Sensor: wind_speed | fields: level, depth, value, ts Task: Fetch depth from soil_moisture where value is greater than the maximum of depth in wind_speed for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074962
train
v2
Sensor network script: Node: dew_point | code: clr | fields: ts, unit, qc, type Sensor: frost | fields: lon, qc, lat, reading Task: Fetch level from dew_point that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074963
train
v3
Sensor network script: Node: air_quality | code: gst | fields: level, depth, unit, qc Sensor: visibility | fields: unit, type, value, ts Task: Fetch lon from air_quality where reading is greater than the minimum of depth in visibility for matching type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074964
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: lon, value, qc, ts Sensor: temperature | fields: type, depth, unit, lon Task: Get reading from soil_moisture where depth appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074965
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lon, unit, type, value Sensor: humidity | fields: lon, reading, type, qc Task: Retrieve depth from rainfall that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074966
train
v3
Sensor network script: Node: temperature | code: hub | fields: qc, value, unit, lon Sensor: sunlight | fields: qc, lon, unit, depth Task: Fetch lat from temperature where value is greater than the average of reading in sunlight for matching type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074967
train
v3
Sensor network script: Node: lightning | code: stn | fields: reading, value, unit, ts Sensor: frost | fields: level, lat, reading, lon Task: Fetch reading from lightning where value is greater than the count of of value in frost for matching qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074968
train
v3
Sensor network script: Node: sunlight | code: clr | fields: ts, qc, lat, type Sensor: drought_index | fields: ts, lon, value, reading Task: Get level from sunlight where value exceeds the minimum value from drought_index for the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074969
train
v3
Sensor network script: Node: uv_index | code: ref | fields: ts, value, type, level Sensor: humidity | fields: type, lon, reading, level Task: Retrieve value from uv_index with reading above the COUNT(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074970
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: lon, unit, reading, depth Sensor: pressure | fields: unit, ts, qc, depth Task: Get value from snow_depth where depth exceeds the total depth from pressure for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074971
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: value, unit, lon, level Sensor: rainfall | fields: level, lon, ts, depth Task: Fetch level from snow_depth that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074972
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, depth, lat, reading Sensor: drought_index | fields: unit, lon, qc, ts Task: Fetch lat from turbidity where ts exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074973
train
v1
Sensor network script: Node: temperature | code: thr | fields: value, lat, ts, depth Sensor: frost | fields: lat, unit, depth, reading Task: Fetch depth from temperature where unit exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074974
train
v3
Sensor network script: Node: drought_index | code: mst | fields: unit, type, lat, ts Sensor: pressure | fields: level, lat, depth, reading Task: Get value from drought_index where reading exceeds the average depth from pressure for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074975
train
v3
Sensor network script: Node: evaporation | code: prt | fields: type, depth, reading, value Sensor: humidity | fields: depth, lon, type, reading Task: Fetch lat from evaporation where value is greater than the total of reading in humidity for matching ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074976
train
v2
Sensor network script: Node: air_quality | code: hub | fields: type, qc, lat, depth Sensor: visibility | fields: ts, reading, value, type Task: Fetch level from air_quality that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074977
train
v3
Sensor network script: Node: frost | code: stn | fields: unit, level, qc, reading Sensor: humidity | fields: reading, depth, lon, type Task: Get lon from frost where reading exceeds the average depth from humidity for the same type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074978
train
v3
Sensor network script: Node: pressure | code: prt | fields: qc, type, lat, reading Sensor: evaporation | fields: level, reading, qc, lon Task: Get value from pressure where value exceeds the count of depth from evaporation for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074979
train
v3
Sensor network script: Node: temperature | code: ref | fields: value, lat, level, reading Sensor: wind_speed | fields: lon, lat, depth, ts Task: Fetch reading from temperature where value is greater than the minimum of depth in wind_speed for matching ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074980
train
v2
Sensor network script: Node: drought_index | code: gst | fields: qc, level, unit, value Sensor: snow_depth | fields: type, value, level, unit Task: Retrieve value from drought_index that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "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_074981
train
v3
Sensor network script: Node: pressure | code: stn | fields: unit, lon, level, value Sensor: dew_point | fields: reading, lat, type, lon Task: Retrieve depth from pressure with reading above the MAX(reading) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074982
train
v1
Sensor network script: Node: turbidity | code: thr | fields: qc, unit, ts, value Sensor: lightning | fields: value, ts, qc, level Task: Get value from turbidity where type appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074983
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: value, qc, ts, level Sensor: visibility | fields: ts, depth, type, value Task: Fetch value from cloud_cover that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074984
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: depth, reading, value, level Sensor: visibility | fields: depth, value, level, reading Task: Get level from wind_speed where ts appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074985
train
v1
Sensor network script: Node: evaporation | code: mst | fields: value, lat, unit, lon Sensor: drought_index | fields: ts, type, qc, reading Task: Retrieve value from evaporation whose type is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074986
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: depth, qc, lon, reading Sensor: evaporation | fields: unit, lat, reading, depth Task: Fetch reading from snow_depth where depth is greater than the minimum of value in evaporation for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074987
train
v2
Sensor network script: Node: uv_index | code: thr | fields: level, reading, lon, ts Sensor: turbidity | fields: level, qc, type, lat Task: Retrieve level from uv_index that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074988
train
v1
Sensor network script: Node: frost | code: gst | fields: ts, type, depth, lon Sensor: drought_index | fields: value, reading, unit, type Task: Retrieve lat from frost whose type is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074989
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: unit, reading, depth, lat Sensor: rainfall | fields: value, lon, qc, ts Task: Get lat from soil_moisture where reading exceeds the average reading from rainfall for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074990
train
v1
Sensor network script: Node: sunlight | code: prt | fields: value, lon, depth, type Sensor: temperature | fields: lon, lat, level, qc Task: Fetch level from sunlight where type exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074991
train
v2
Sensor network script: Node: air_quality | code: ref | fields: ts, qc, unit, reading Sensor: uv_index | fields: qc, value, lon, reading Task: Get lat from air_quality where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074992
train
v1
Sensor network script: Node: pressure | code: ref | fields: unit, ts, depth, type Sensor: evaporation | fields: ts, depth, lat, type Task: Fetch value from pressure where qc exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074993
train
v2
Sensor network script: Node: drought_index | code: clr | fields: type, ts, depth, reading Sensor: wind_speed | fields: type, depth, reading, value Task: Fetch lat from drought_index that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074994
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: value, lat, level, lon Sensor: frost | fields: level, qc, type, depth Task: Retrieve depth from cloud_cover with reading above the MIN(reading) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "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_074995
train
v3
Sensor network script: Node: sunlight | code: ref | fields: value, level, type, lat Sensor: wind_speed | fields: ts, lon, value, reading Task: Get depth from sunlight where value exceeds the total depth from wind_speed for the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074996
train
v3
Sensor network script: Node: drought_index | code: hub | fields: unit, lon, value, type Sensor: uv_index | fields: type, reading, value, level Task: Fetch value from drought_index where value is greater than the minimum of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), 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": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074997
train
v1
Sensor network script: Node: visibility | code: ref | fields: level, reading, qc, ts Sensor: pressure | fields: level, type, unit, depth Task: Retrieve reading from visibility whose unit is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074998
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: type, lat, lon, value Sensor: soil_moisture | fields: reading, type, qc, lat Task: Retrieve lat from wind_speed that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074999
train