variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: sunlight | code: thr | fields: level, qc, lat, type Sensor: wind_speed | fields: reading, lon, ts, lat Task: Retrieve depth from sunlight with reading above the MAX(value) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011000
train
v3
Sensor network script: Node: air_quality | code: ref | fields: value, type, ts, lon Sensor: drought_index | fields: ts, unit, reading, level Task: Retrieve value from air_quality with reading above the COUNT(value) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011001
train
v3
Sensor network script: Node: frost | code: prt | fields: reading, depth, unit, value Sensor: soil_moisture | fields: type, qc, reading, unit Task: Get reading from frost where value exceeds the total value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011002
train
v1
Sensor network script: Node: air_quality | code: stn | fields: depth, reading, lat, value Sensor: snow_depth | fields: type, reading, ts, level Task: Get reading from air_quality where unit appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011003
train
v3
Sensor network script: Node: pressure | code: hub | fields: depth, reading, value, unit Sensor: visibility | fields: lat, depth, unit, type Task: Retrieve lat from pressure with reading above the MIN(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011004
train
v3
Sensor network script: Node: dew_point | code: stn | fields: lat, depth, type, unit Sensor: snow_depth | fields: lat, unit, level, ts Task: Fetch reading from dew_point where value is greater than the average of depth in snow_depth for matching ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011005
train
v1
Sensor network script: Node: sunlight | code: stn | fields: level, ts, value, depth Sensor: snow_depth | fields: value, type, qc, reading Task: Get value from sunlight where depth appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011006
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: lon, level, reading, lat Sensor: uv_index | fields: level, type, value, lon Task: Get lat from soil_moisture where depth exceeds the count of value from uv_index for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011007
train
v3
Sensor network script: Node: temperature | code: clr | fields: lon, reading, level, value Sensor: rainfall | fields: ts, type, lat, level Task: Retrieve value from temperature with value above the AVG(reading) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011008
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: qc, lon, lat, value Sensor: sunlight | fields: unit, lon, type, level Task: Fetch reading from wind_speed that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011009
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: level, unit, qc, lon Sensor: pressure | fields: depth, qc, type, reading Task: Retrieve reading from snow_depth whose depth is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011010
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lat, reading, depth, type Sensor: uv_index | fields: lat, level, depth, lon Task: Get reading from dew_point where depth exceeds the count of value from uv_index for the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011011
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: reading, lat, qc, depth Sensor: lightning | fields: reading, lon, ts, qc Task: Get reading from snow_depth where reading exceeds the total reading from lightning for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011012
train
v1
Sensor network script: Node: temperature | code: hub | fields: value, reading, type, depth Sensor: visibility | fields: value, unit, lat, type Task: Get value from temperature where depth appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011013
train
v1
Sensor network script: Node: evaporation | code: gst | fields: level, ts, depth, unit Sensor: lightning | fields: reading, lon, type, value Task: Get lat from evaporation where depth appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011014
train
v1
Sensor network script: Node: visibility | code: mst | fields: qc, reading, level, type Sensor: dew_point | fields: unit, lon, qc, type Task: Retrieve lon from visibility whose depth is found in dew_point records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011015
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: type, ts, reading, value Sensor: soil_moisture | fields: level, lon, qc, reading Task: Retrieve depth from wind_speed that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011016
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: unit, ts, depth, value Sensor: humidity | fields: qc, depth, reading, value Task: Get value from wind_speed where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011017
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, reading, depth, type Sensor: dew_point | fields: depth, reading, level, unit Task: Retrieve value from evaporation whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011018
train
v3
Sensor network script: Node: evaporation | code: stn | fields: lat, value, qc, ts Sensor: temperature | fields: unit, depth, qc, lat Task: Retrieve level from evaporation with reading above the SUM(value) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011019
train
v2
Sensor network script: Node: pressure | code: clr | fields: value, type, unit, reading Sensor: rainfall | fields: lat, unit, level, type Task: Get level from pressure where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011020
train
v1
Sensor network script: Node: pressure | code: hub | fields: value, lat, reading, lon Sensor: lightning | fields: ts, qc, level, value Task: Fetch lon from pressure where unit exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011021
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: qc, value, unit, ts Sensor: dew_point | fields: type, lon, lat, unit Task: Get lat from wind_speed where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011022
train
v2
Sensor network script: Node: temperature | code: hub | fields: level, lon, reading, qc Sensor: sunlight | fields: lon, unit, lat, reading Task: Retrieve value from temperature that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011023
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: qc, value, lat, unit Sensor: visibility | fields: qc, unit, value, depth Task: Get lat from soil_moisture where depth exceeds the total reading from visibility for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011024
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: unit, qc, type, level Sensor: sunlight | fields: lon, ts, qc, lat Task: Get lon from wind_speed where qc appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011025
train
v2
Sensor network script: Node: air_quality | code: ref | fields: qc, reading, value, level Sensor: rainfall | fields: type, lon, lat, ts Task: Get lat from air_quality where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011026
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lat, ts, depth, level Sensor: visibility | fields: value, reading, unit, type Task: Fetch value from sunlight where value is greater than the minimum of depth in visibility for matching type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011027
train
v1
Sensor network script: Node: evaporation | code: stn | fields: qc, level, lon, depth Sensor: frost | fields: lon, reading, lat, qc Task: Fetch lat from evaporation where type exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011028
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: unit, type, depth, level Sensor: wind_speed | fields: unit, lon, lat, value Task: Retrieve lon from soil_moisture that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011029
train
v2
Sensor network script: Node: frost | code: hub | fields: level, lon, depth, qc Sensor: pressure | fields: ts, lon, value, level Task: Get reading from frost where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011030
train
v1
Sensor network script: Node: frost | code: ref | fields: lon, qc, type, ts Sensor: rainfall | fields: level, type, unit, reading Task: Fetch depth from frost where depth exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011031
train
v2
Sensor network script: Node: evaporation | code: gst | fields: reading, qc, unit, lon Sensor: drought_index | fields: level, depth, lon, type Task: Get level from evaporation where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011032
train
v2
Sensor network script: Node: sunlight | code: clr | fields: type, lat, value, unit Sensor: snow_depth | fields: level, ts, type, lon Task: Get value from sunlight where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011033
train
v1
Sensor network script: Node: sunlight | code: hub | fields: ts, qc, reading, type Sensor: visibility | fields: unit, depth, value, reading Task: Retrieve value from sunlight whose ts is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011034
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: type, unit, level, value Sensor: turbidity | fields: value, depth, lon, reading Task: Get depth from cloud_cover where a corresponding entry exists in turbidity with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011035
train
v3
Sensor network script: Node: uv_index | code: prt | fields: type, unit, depth, lon Sensor: frost | fields: unit, level, ts, qc Task: Retrieve depth from uv_index with value above the MIN(depth) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011036
train
v2
Sensor network script: Node: evaporation | code: hub | fields: unit, value, level, ts Sensor: dew_point | fields: lat, unit, type, ts Task: Fetch lat from evaporation that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011037
train
v3
Sensor network script: Node: drought_index | code: mst | fields: level, value, ts, lat Sensor: sunlight | fields: depth, unit, type, reading Task: Fetch reading from drought_index where reading is greater than the minimum of value in sunlight for matching type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011038
train
v3
Sensor network script: Node: sunlight | code: ref | fields: depth, lon, reading, type Sensor: temperature | fields: reading, lon, ts, qc Task: Retrieve lat from sunlight with reading above the COUNT(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011039
train
v1
Sensor network script: Node: frost | code: prt | fields: lon, ts, type, reading Sensor: uv_index | fields: lon, type, lat, unit Task: Fetch lon from frost where ts exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011040
train
v1
Sensor network script: Node: pressure | code: thr | fields: depth, type, reading, lon Sensor: rainfall | fields: depth, lon, unit, qc Task: Get lat from pressure where unit appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011041
train
v1
Sensor network script: Node: sunlight | code: hub | fields: lat, value, depth, ts Sensor: air_quality | fields: depth, unit, qc, lat Task: Retrieve lat from sunlight whose ts is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011042
train
v1
Sensor network script: Node: pressure | code: clr | fields: qc, reading, unit, value Sensor: frost | fields: unit, lat, type, lon Task: Get value from pressure where qc appears in frost readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011043
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lon, level, qc, depth Sensor: temperature | fields: reading, lon, type, level Task: Retrieve depth from cloud_cover whose ts is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011044
train
v2
Sensor network script: Node: turbidity | code: thr | fields: type, value, depth, lat Sensor: frost | fields: unit, reading, qc, type Task: Fetch lat from turbidity that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011045
train
v1
Sensor network script: Node: visibility | code: thr | fields: lat, unit, type, depth Sensor: wind_speed | fields: lat, value, reading, ts Task: Retrieve depth from visibility whose type is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011046
train
v2
Sensor network script: Node: turbidity | code: clr | fields: value, qc, unit, ts Sensor: sunlight | fields: type, depth, reading, qc Task: Fetch lat from turbidity that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011047
train
v3
Sensor network script: Node: dew_point | code: thr | fields: unit, lon, reading, level Sensor: evaporation | fields: depth, lat, value, ts Task: Get depth from dew_point where value exceeds the average reading from evaporation for the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "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_011048
train
v1
Sensor network script: Node: air_quality | code: ref | fields: ts, reading, depth, qc Sensor: evaporation | fields: type, ts, depth, reading Task: Retrieve lon from air_quality whose ts is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011049
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: qc, level, unit, reading Sensor: rainfall | fields: lat, reading, ts, level Task: Get lat from soil_moisture where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011050
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: value, depth, ts, unit Sensor: turbidity | fields: depth, unit, ts, type Task: Fetch depth from cloud_cover that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011051
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: lat, ts, depth, reading Sensor: rainfall | fields: level, type, depth, lon Task: Retrieve lon from snow_depth that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011052
train
v2
Sensor network script: Node: drought_index | code: clr | fields: qc, lon, type, level Sensor: cloud_cover | fields: ts, qc, value, type Task: Retrieve lat from drought_index that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011053
train
v1
Sensor network script: Node: humidity | code: hub | fields: type, lon, qc, unit Sensor: cloud_cover | fields: lon, qc, ts, depth Task: Retrieve depth from humidity whose ts is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011054
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: qc, type, unit, level Sensor: air_quality | fields: reading, level, unit, ts Task: Fetch reading from snow_depth where unit exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011055
train
v1
Sensor network script: Node: sunlight | code: gst | fields: qc, lat, depth, type Sensor: frost | fields: depth, qc, unit, type Task: Retrieve lat from sunlight whose unit is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011056
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: depth, reading, level, type Sensor: dew_point | fields: depth, value, lat, unit Task: Fetch level from wind_speed where value is greater than the maximum of value in dew_point for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011057
train
v3
Sensor network script: Node: drought_index | code: stn | fields: value, level, lat, unit Sensor: rainfall | fields: depth, unit, reading, value Task: Get value from drought_index where value exceeds the count of value from rainfall for the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011058
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: qc, unit, lon, lat Sensor: uv_index | fields: ts, depth, reading, level Task: Retrieve level from soil_moisture that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011059
train
v1
Sensor network script: Node: turbidity | code: hub | fields: depth, lat, ts, unit Sensor: temperature | fields: unit, reading, type, level Task: Fetch depth from turbidity where depth exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011060
train
v3
Sensor network script: Node: sunlight | code: thr | fields: ts, value, depth, unit Sensor: rainfall | fields: unit, lon, value, type Task: Fetch lat from sunlight where value is greater than the minimum of reading in rainfall for matching ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011061
train
v3
Sensor network script: Node: temperature | code: thr | fields: level, reading, lon, qc Sensor: dew_point | fields: lon, unit, qc, depth Task: Fetch value from temperature where depth is greater than the maximum of reading in dew_point for matching type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011062
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: value, ts, reading, type Sensor: lightning | fields: level, depth, type, reading Task: Retrieve level from cloud_cover whose type is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011063
train
v3
Sensor network script: Node: evaporation | code: gst | fields: ts, lon, level, reading Sensor: air_quality | fields: level, lat, type, unit Task: Fetch level from evaporation where reading is greater than the count of of depth in air_quality for matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011064
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: qc, type, depth, unit Sensor: rainfall | fields: lon, value, reading, depth Task: Get lat from cloud_cover where reading exceeds the minimum depth from rainfall for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011065
train
v2
Sensor network script: Node: temperature | code: gst | fields: level, ts, reading, unit Sensor: dew_point | fields: ts, lon, depth, reading Task: Fetch depth from temperature that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011066
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: ts, reading, qc, type Sensor: humidity | fields: lat, qc, depth, level Task: Get value from wind_speed where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011067
train
v1
Sensor network script: Node: dew_point | code: thr | fields: ts, depth, unit, value Sensor: snow_depth | fields: value, depth, reading, lat Task: Get value from dew_point where depth appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011068
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: value, lon, reading, depth Sensor: temperature | fields: type, reading, level, ts Task: Get lon from snow_depth where ts appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011069
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: qc, reading, depth, unit Sensor: visibility | fields: lat, value, qc, type Task: Retrieve level from soil_moisture that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011070
train
v3
Sensor network script: Node: temperature | code: mst | fields: level, unit, lat, lon Sensor: sunlight | fields: value, unit, depth, ts Task: Retrieve lon from temperature with depth above the MIN(reading) of sunlight readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011071
train
v3
Sensor network script: Node: pressure | code: hub | fields: depth, unit, qc, lon Sensor: lightning | fields: value, type, unit, lon Task: Retrieve lon from pressure with value above the MAX(reading) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011072
train
v1
Sensor network script: Node: drought_index | code: gst | fields: reading, qc, value, depth Sensor: temperature | fields: ts, type, qc, lon Task: Get level from drought_index where ts appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011073
train
v2
Sensor network script: Node: turbidity | code: thr | fields: unit, qc, lon, depth Sensor: air_quality | fields: qc, reading, lon, value Task: Fetch lat from turbidity that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011074
train
v3
Sensor network script: Node: rainfall | code: clr | fields: depth, lon, level, unit Sensor: temperature | fields: depth, lon, reading, unit Task: Retrieve reading from rainfall with reading above the SUM(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011075
train
v2
Sensor network script: Node: frost | code: stn | fields: reading, level, ts, type Sensor: lightning | fields: lat, value, unit, depth Task: Retrieve reading from frost that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011076
train
v1
Sensor network script: Node: turbidity | code: mst | fields: unit, depth, qc, ts Sensor: lightning | fields: type, level, lat, reading Task: Get value from turbidity where type appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011077
train
v1
Sensor network script: Node: sunlight | code: hub | fields: type, level, qc, ts Sensor: air_quality | fields: lon, reading, lat, qc Task: Get lat from sunlight where unit appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011078
train
v2
Sensor network script: Node: sunlight | code: prt | fields: lat, type, value, ts Sensor: cloud_cover | fields: reading, type, depth, qc Task: Get lat from sunlight where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011079
train
v3
Sensor network script: Node: drought_index | code: thr | fields: ts, qc, lat, level Sensor: rainfall | fields: level, lat, type, depth Task: Retrieve reading from drought_index with value above the MIN(value) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011080
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: type, lon, unit, qc Sensor: drought_index | fields: qc, value, unit, level Task: Retrieve depth from cloud_cover whose depth is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011081
train
v3
Sensor network script: Node: visibility | code: gst | fields: value, type, depth, qc Sensor: drought_index | fields: qc, value, depth, unit Task: Retrieve value from visibility with value above the SUM(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011082
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: depth, lat, reading, unit Sensor: sunlight | fields: depth, lat, qc, value Task: Get value from cloud_cover where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011083
train
v1
Sensor network script: Node: uv_index | code: clr | fields: qc, ts, lon, value Sensor: temperature | fields: lat, value, unit, lon Task: Get depth from uv_index where ts appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011084
train
v3
Sensor network script: Node: visibility | code: prt | fields: lon, unit, type, level Sensor: temperature | fields: ts, reading, qc, lat Task: Get level from visibility where depth exceeds the minimum reading from temperature for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011085
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: unit, lat, type, ts Sensor: temperature | fields: lon, unit, qc, lat Task: Retrieve value from snow_depth with value above the AVG(depth) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011086
train
v2
Sensor network script: Node: temperature | code: mst | fields: ts, unit, lat, value Sensor: visibility | fields: lon, ts, type, level Task: Fetch value from temperature that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011087
train
v2
Sensor network script: Node: lightning | code: thr | fields: value, reading, qc, level Sensor: air_quality | fields: depth, value, lon, unit Task: Retrieve depth from lightning that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011088
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: qc, value, type, ts Sensor: uv_index | fields: lon, reading, ts, lat Task: Get level from wind_speed where type appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011089
train
v3
Sensor network script: Node: dew_point | code: clr | fields: unit, type, level, lon Sensor: air_quality | fields: reading, lon, depth, type Task: Fetch level from dew_point where value is greater than the average of value in air_quality for matching qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011090
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, reading, qc, depth Sensor: evaporation | fields: depth, qc, value, reading Task: Retrieve reading from drought_index whose type is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011091
train
v2
Sensor network script: Node: turbidity | code: prt | fields: value, lat, type, ts Sensor: dew_point | fields: depth, lat, level, lon Task: Get lon from turbidity where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011092
train
v2
Sensor network script: Node: sunlight | code: thr | fields: qc, ts, reading, lon Sensor: turbidity | fields: type, qc, unit, level Task: Fetch depth from sunlight that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011093
train
v3
Sensor network script: Node: uv_index | code: hub | fields: lon, ts, value, level Sensor: evaporation | fields: value, ts, lon, level Task: Fetch level from uv_index where reading is greater than the total of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011094
train
v3
Sensor network script: Node: turbidity | code: gst | fields: lon, depth, type, qc Sensor: drought_index | fields: level, ts, lon, value Task: Fetch lon from turbidity where reading is greater than the average of value in drought_index for matching unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011095
train
v1
Sensor network script: Node: temperature | code: gst | fields: depth, reading, qc, lat Sensor: frost | fields: level, lon, depth, type Task: Fetch lon from temperature where ts exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011096
train
v2
Sensor network script: Node: visibility | code: clr | fields: lon, value, level, type Sensor: pressure | fields: value, unit, depth, qc Task: Retrieve value from visibility that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011097
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: depth, value, unit, lon Sensor: sunlight | fields: type, depth, reading, level Task: Retrieve level from soil_moisture that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011098
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: lat, unit, reading, qc Sensor: cloud_cover | fields: unit, ts, lon, reading Task: Get lat from soil_moisture where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011099
train