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: soil_moisture | code: thr | fields: lon, level, qc, ts Sensor: turbidity | fields: lon, unit, depth, level Task: Get lon from soil_moisture where a corresponding entry exists in turbidity with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015000
train
v2
Sensor network script: Node: dew_point | code: gst | fields: depth, lon, type, lat Sensor: temperature | fields: level, lat, depth, type Task: Fetch lat from dew_point that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015001
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: unit, type, qc, lat Sensor: wind_speed | fields: depth, value, unit, qc Task: Retrieve value from cloud_cover with reading above the MIN(depth) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015002
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: value, lon, unit, level Sensor: pressure | fields: level, ts, lon, qc Task: Get lon from wind_speed where type appears in pressure readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015003
train
v1
Sensor network script: Node: frost | code: thr | fields: level, lon, type, reading Sensor: drought_index | fields: reading, ts, level, qc Task: Get level from frost where depth appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015004
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: value, type, ts, lat Sensor: lightning | fields: unit, lat, type, lon Task: Fetch lat from cloud_cover where unit exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015005
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: reading, lon, depth, level Sensor: sunlight | fields: type, qc, level, unit Task: Retrieve value from snow_depth whose unit is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015006
train
v2
Sensor network script: Node: frost | code: hub | fields: value, ts, depth, qc Sensor: wind_speed | fields: level, ts, qc, type Task: Retrieve lon from frost that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015007
train
v3
Sensor network script: Node: temperature | code: prt | fields: lon, qc, value, reading Sensor: humidity | fields: qc, reading, value, ts Task: Get reading from temperature where depth exceeds the minimum reading from humidity for the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015008
train
v1
Sensor network script: Node: air_quality | code: ref | fields: lat, level, unit, ts Sensor: evaporation | fields: reading, unit, type, lon Task: Fetch value from air_quality where type exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015009
train
v1
Sensor network script: Node: lightning | code: ref | fields: lon, value, type, depth Sensor: turbidity | fields: ts, lat, level, type Task: Get lon from lightning where unit appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015010
train
v1
Sensor network script: Node: lightning | code: gst | fields: reading, depth, unit, lat Sensor: drought_index | fields: depth, ts, reading, lat Task: Retrieve lon from lightning whose depth is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015011
train
v2
Sensor network script: Node: turbidity | code: clr | fields: ts, type, reading, level Sensor: pressure | fields: level, type, lat, depth Task: Fetch lon from turbidity that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015012
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: type, lat, depth, ts Sensor: soil_moisture | fields: value, depth, level, qc Task: Retrieve value from cloud_cover with value above the MAX(depth) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015013
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, value, level, qc Sensor: sunlight | fields: lat, ts, type, value Task: Retrieve value from humidity with depth above the COUNT(depth) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015014
train
v3
Sensor network script: Node: lightning | code: prt | fields: type, level, lon, value Sensor: pressure | fields: reading, value, depth, unit Task: Get reading from lightning where reading exceeds the average depth from pressure for the same ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015015
train
v1
Sensor network script: Node: temperature | code: stn | fields: type, lon, depth, level Sensor: air_quality | fields: ts, reading, level, value Task: Retrieve reading from temperature whose ts is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015016
train
v3
Sensor network script: Node: rainfall | code: mst | fields: ts, qc, lon, unit Sensor: sunlight | fields: qc, lat, value, level Task: Retrieve lon from rainfall with reading above the SUM(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015017
train
v2
Sensor network script: Node: temperature | code: thr | fields: lon, reading, qc, ts Sensor: visibility | fields: level, reading, lon, ts Task: Get level from temperature where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015018
train
v1
Sensor network script: Node: visibility | code: ref | fields: level, ts, qc, unit Sensor: sunlight | fields: depth, type, qc, ts Task: Get lat from visibility where qc appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015019
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: qc, unit, value, level Sensor: pressure | fields: ts, qc, level, type Task: Get value from wind_speed where ts appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015020
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: reading, ts, qc, depth Sensor: frost | fields: unit, value, ts, reading Task: Get depth from cloud_cover where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015021
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: lat, reading, lon, type Sensor: drought_index | fields: lon, value, reading, type Task: Retrieve depth from soil_moisture that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015022
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: type, lon, qc, lat Sensor: sunlight | fields: type, level, value, ts Task: Fetch lat from wind_speed where ts exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015023
train
v2
Sensor network script: Node: drought_index | code: stn | fields: lat, lon, level, value Sensor: soil_moisture | fields: reading, depth, ts, qc Task: Fetch reading from drought_index that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015024
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: type, lon, lat, ts Sensor: rainfall | fields: level, depth, unit, ts Task: Fetch lat from snow_depth that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015025
train
v3
Sensor network script: Node: pressure | code: thr | fields: unit, reading, ts, type Sensor: cloud_cover | fields: value, qc, type, lat Task: Retrieve depth from pressure with value above the AVG(reading) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015026
train
v3
Sensor network script: Node: air_quality | code: hub | fields: depth, ts, lat, type Sensor: dew_point | fields: lon, reading, unit, lat Task: Get depth from air_quality where depth exceeds the average reading from dew_point for the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015027
train
v1
Sensor network script: Node: air_quality | code: clr | fields: depth, ts, unit, qc Sensor: turbidity | fields: qc, unit, value, level Task: Retrieve value from air_quality whose type is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015028
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: ts, lat, reading, depth Sensor: drought_index | fields: ts, lon, qc, unit Task: Retrieve value from soil_moisture with depth above the MAX(reading) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015029
train
v1
Sensor network script: Node: dew_point | code: mst | fields: reading, lon, depth, qc Sensor: rainfall | fields: qc, level, depth, ts Task: Retrieve depth from dew_point whose unit is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015030
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: depth, ts, reading, level Sensor: dew_point | fields: qc, reading, level, lat Task: Retrieve depth from snow_depth with reading above the AVG(reading) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015031
train
v3
Sensor network script: Node: air_quality | code: thr | fields: lat, lon, reading, value Sensor: visibility | fields: unit, depth, reading, type Task: Get value from air_quality where value exceeds the total depth from visibility for the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015032
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, level, type, lon Sensor: pressure | fields: lon, qc, value, reading Task: Retrieve lon from humidity with depth above the MIN(reading) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015033
train
v2
Sensor network script: Node: lightning | code: prt | fields: lon, qc, value, lat Sensor: temperature | fields: lon, unit, reading, ts Task: Get lon from lightning where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015034
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, value, qc, lat Sensor: uv_index | fields: value, level, ts, reading Task: Retrieve level from frost that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015035
train
v2
Sensor network script: Node: evaporation | code: gst | fields: value, type, depth, lat Sensor: soil_moisture | fields: reading, level, type, lat Task: Retrieve level from evaporation that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015036
train
v2
Sensor network script: Node: humidity | code: thr | fields: reading, lon, qc, level Sensor: soil_moisture | fields: lon, unit, reading, value Task: Get reading from humidity where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015037
train
v2
Sensor network script: Node: humidity | code: thr | fields: lat, lon, level, value Sensor: snow_depth | fields: lat, qc, value, depth Task: Fetch level from humidity that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015038
train
v2
Sensor network script: Node: pressure | code: prt | fields: qc, reading, value, lat Sensor: soil_moisture | fields: type, lat, unit, level Task: Fetch value from pressure that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015039
train
v3
Sensor network script: Node: sunlight | code: hub | fields: depth, lat, lon, level Sensor: evaporation | fields: value, qc, ts, type Task: Retrieve depth from sunlight with value above the COUNT(depth) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015040
train
v2
Sensor network script: Node: dew_point | code: hub | fields: lat, depth, ts, reading Sensor: turbidity | fields: type, ts, lat, value Task: Fetch lat from dew_point that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015041
train
v1
Sensor network script: Node: rainfall | code: ref | fields: reading, ts, value, lon Sensor: evaporation | fields: lat, qc, depth, reading Task: Retrieve reading from rainfall whose unit is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015042
train
v3
Sensor network script: Node: frost | code: hub | fields: lat, lon, reading, qc Sensor: pressure | fields: unit, qc, ts, lon Task: Fetch value from frost where reading is greater than the minimum of depth in pressure for matching unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015043
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lat, lon, reading, value Sensor: frost | fields: reading, type, value, qc Task: Fetch lon from air_quality that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015044
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: type, reading, lon, level Sensor: pressure | fields: depth, unit, level, ts Task: Get value from snow_depth where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015045
train
v3
Sensor network script: Node: lightning | code: ref | fields: depth, qc, type, lat Sensor: drought_index | fields: value, lat, qc, depth Task: Fetch reading from lightning where depth is greater than the maximum of depth in drought_index for matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015046
train
v2
Sensor network script: Node: dew_point | code: thr | fields: lon, reading, value, qc Sensor: wind_speed | fields: lon, qc, value, unit Task: Retrieve lat from dew_point that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015047
train
v1
Sensor network script: Node: uv_index | code: mst | fields: depth, value, type, ts Sensor: wind_speed | fields: value, type, unit, lon Task: Fetch lon from uv_index where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015048
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: reading, unit, value, type Sensor: sunlight | fields: ts, qc, reading, type Task: Get value from snow_depth where qc appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015049
train
v3
Sensor network script: Node: humidity | code: thr | fields: ts, lon, qc, lat Sensor: visibility | fields: value, ts, unit, level Task: Fetch value from humidity where depth is greater than the maximum of reading in visibility for matching qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015050
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: unit, level, type, depth Sensor: soil_moisture | fields: reading, type, ts, qc Task: Get lon from cloud_cover where reading exceeds the minimum depth from soil_moisture for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015051
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: value, type, unit, reading Sensor: pressure | fields: value, lon, qc, lat Task: Retrieve lon from snow_depth that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015052
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: value, qc, reading, type Sensor: dew_point | fields: lat, depth, unit, qc Task: Get lat from cloud_cover where depth exceeds the maximum depth from dew_point for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015053
train
v2
Sensor network script: Node: turbidity | code: mst | fields: lon, ts, value, depth Sensor: pressure | fields: depth, lat, qc, level Task: Get lat from turbidity where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015054
train
v2
Sensor network script: Node: pressure | code: ref | fields: level, type, lat, ts Sensor: dew_point | fields: unit, value, ts, qc Task: Retrieve depth from pressure that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015055
train
v3
Sensor network script: Node: pressure | code: ref | fields: qc, lon, unit, lat Sensor: drought_index | fields: ts, value, unit, type Task: Retrieve lon from pressure with depth above the AVG(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015056
train
v2
Sensor network script: Node: temperature | code: gst | fields: unit, reading, depth, level Sensor: dew_point | fields: qc, level, lat, unit Task: Get reading from temperature where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015057
train
v2
Sensor network script: Node: turbidity | code: clr | fields: type, lon, qc, lat Sensor: dew_point | fields: ts, qc, type, reading Task: Get depth from turbidity where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015058
train
v3
Sensor network script: Node: air_quality | code: prt | fields: level, unit, lat, reading Sensor: temperature | fields: depth, level, reading, type Task: Get lon from air_quality where depth exceeds the count of value from temperature for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015059
train
v3
Sensor network script: Node: rainfall | code: ref | fields: level, unit, reading, depth Sensor: turbidity | fields: lon, depth, reading, ts Task: Retrieve depth from rainfall with value above the MAX(value) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015060
train
v1
Sensor network script: Node: visibility | code: mst | fields: unit, ts, value, lat Sensor: lightning | fields: type, ts, unit, qc Task: Get lon from visibility where unit appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015061
train
v2
Sensor network script: Node: temperature | code: thr | fields: lat, type, qc, ts Sensor: drought_index | fields: lon, lat, unit, qc Task: Fetch depth from temperature that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015062
train
v1
Sensor network script: Node: evaporation | code: clr | fields: lon, depth, lat, value Sensor: temperature | fields: depth, ts, lon, value Task: Fetch level from evaporation where type exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015063
train
v1
Sensor network script: Node: visibility | code: stn | fields: ts, lon, type, value Sensor: soil_moisture | fields: level, lat, ts, qc Task: Fetch reading from visibility where qc exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015064
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: unit, lon, level, ts Sensor: wind_speed | fields: ts, lat, depth, unit Task: Fetch lat from snow_depth where depth exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015065
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: depth, lat, qc, reading Sensor: sunlight | fields: qc, unit, reading, value Task: Fetch value from wind_speed that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015066
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: ts, unit, depth, qc Sensor: pressure | fields: lon, unit, type, ts Task: Fetch depth from cloud_cover that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015067
train
v2
Sensor network script: Node: visibility | code: ref | fields: level, reading, value, lon Sensor: drought_index | fields: value, unit, ts, depth Task: Get reading from visibility where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015068
train
v3
Sensor network script: Node: sunlight | code: clr | fields: level, depth, type, lon Sensor: air_quality | fields: qc, value, reading, ts Task: Retrieve reading from sunlight with reading above the MAX(depth) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015069
train
v2
Sensor network script: Node: humidity | code: ref | fields: ts, qc, level, type Sensor: pressure | fields: reading, type, lat, unit Task: Fetch depth from humidity that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015070
train
v2
Sensor network script: Node: drought_index | code: mst | fields: depth, ts, unit, lat Sensor: pressure | fields: unit, ts, value, level Task: Get lon from drought_index where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015071
train
v2
Sensor network script: Node: pressure | code: hub | fields: value, type, unit, level Sensor: rainfall | fields: value, type, lat, qc Task: Fetch reading from pressure that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015072
train
v2
Sensor network script: Node: lightning | code: ref | fields: ts, lat, depth, lon Sensor: temperature | fields: unit, ts, lon, qc Task: Retrieve reading from lightning that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015073
train
v3
Sensor network script: Node: lightning | code: prt | fields: level, lon, type, unit Sensor: dew_point | fields: depth, qc, lat, level Task: Get lat from lightning where value exceeds the minimum value from dew_point for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015074
train
v1
Sensor network script: Node: uv_index | code: stn | fields: reading, type, unit, lon Sensor: rainfall | fields: depth, type, ts, lon Task: Retrieve lon from uv_index whose unit is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015075
train
v2
Sensor network script: Node: lightning | code: mst | fields: lat, qc, type, unit Sensor: temperature | fields: lat, ts, value, qc Task: Fetch depth from lightning that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015076
train
v2
Sensor network script: Node: sunlight | code: mst | fields: lat, ts, unit, level Sensor: pressure | fields: lat, lon, qc, unit Task: Get lat from sunlight where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015077
train
v3
Sensor network script: Node: lightning | code: gst | fields: depth, reading, value, lon Sensor: uv_index | fields: lat, reading, unit, qc Task: Retrieve reading from lightning with depth above the COUNT(value) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015078
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: unit, reading, lon, value Sensor: humidity | fields: type, qc, depth, reading Task: Get reading from wind_speed where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015079
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: ts, depth, level, lon Sensor: drought_index | fields: level, lon, value, type Task: Get depth from snow_depth where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015080
train
v3
Sensor network script: Node: uv_index | code: gst | fields: type, unit, lat, value Sensor: turbidity | fields: lat, depth, ts, unit Task: Fetch value from uv_index where value is greater than the count of of depth in turbidity for matching ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015081
train
v2
Sensor network script: Node: temperature | code: gst | fields: lon, value, level, ts Sensor: frost | fields: unit, depth, ts, lon Task: Get lon from temperature where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015082
train
v2
Sensor network script: Node: temperature | code: ref | fields: unit, level, reading, ts Sensor: wind_speed | fields: unit, type, qc, lon Task: Fetch value from temperature that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015083
train
v2
Sensor network script: Node: lightning | code: hub | fields: lat, qc, value, level Sensor: snow_depth | fields: type, lon, level, value Task: Retrieve reading from lightning that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015084
train
v2
Sensor network script: Node: frost | code: stn | fields: level, ts, depth, qc Sensor: air_quality | fields: lat, value, reading, ts Task: Fetch reading from frost that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015085
train
v3
Sensor network script: Node: air_quality | code: hub | fields: lon, reading, ts, value Sensor: wind_speed | fields: ts, depth, value, level Task: Get lat from air_quality where value exceeds the minimum value from wind_speed for the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015086
train
v1
Sensor network script: Node: lightning | code: stn | fields: qc, level, unit, type Sensor: rainfall | fields: unit, lon, lat, level Task: Retrieve level from lightning whose depth is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015087
train
v1
Sensor network script: Node: humidity | code: gst | fields: lon, depth, qc, reading Sensor: sunlight | fields: ts, value, lat, depth Task: Fetch reading from humidity where unit exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015088
train
v3
Sensor network script: Node: pressure | code: prt | fields: reading, qc, level, lat Sensor: snow_depth | fields: qc, ts, type, level Task: Get lat from pressure where depth exceeds the minimum depth from snow_depth for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015089
train
v2
Sensor network script: Node: uv_index | code: thr | fields: unit, lat, level, reading Sensor: wind_speed | fields: type, level, reading, qc Task: Fetch value from uv_index that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015090
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: qc, level, reading, value Sensor: turbidity | fields: depth, ts, value, reading Task: Retrieve lat from wind_speed whose depth is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015091
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lat, reading, lon, ts Sensor: snow_depth | fields: ts, value, type, level Task: Get level from air_quality where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015092
train
v1
Sensor network script: Node: frost | code: prt | fields: lat, lon, level, value Sensor: lightning | fields: level, value, qc, lon Task: Fetch value from frost where type exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015093
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, level, unit, qc Sensor: drought_index | fields: lat, depth, level, value Task: Fetch reading from humidity where depth is greater than the total of reading in drought_index for matching ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015094
train
v2
Sensor network script: Node: pressure | code: clr | fields: reading, type, qc, depth Sensor: temperature | fields: type, unit, lon, qc Task: Retrieve depth from pressure that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_015095
train
v3
Sensor network script: Node: evaporation | code: stn | fields: depth, type, value, ts Sensor: soil_moisture | fields: level, depth, ts, reading Task: Fetch lon from evaporation where reading is greater than the maximum of reading in soil_moisture for matching type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "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_015096
train
v2
Sensor network script: Node: temperature | code: hub | fields: qc, value, type, lon Sensor: lightning | fields: reading, level, depth, lon Task: Fetch lat from temperature that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015097
train
v2
Sensor network script: Node: rainfall | code: clr | fields: qc, lat, depth, type Sensor: pressure | fields: qc, lat, ts, reading Task: Retrieve lat from rainfall that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015098
train
v3
Sensor network script: Node: visibility | code: ref | fields: lon, type, value, unit Sensor: soil_moisture | fields: lon, qc, type, ts Task: Fetch lon from visibility where depth is greater than the count of of reading in soil_moisture for matching ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_015099
train