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: evaporation | code: thr | fields: qc, type, unit, lat Sensor: wind_speed | fields: qc, lon, type, reading Task: Fetch lon from evaporation where value is greater than the average of reading in wind_speed for matching depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004000
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: qc, lon, level, lat Sensor: evaporation | fields: level, ts, qc, unit Task: Retrieve depth from snow_depth with value above the AVG(depth) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004001
train
v3
Sensor network script: Node: air_quality | code: ref | fields: lon, qc, reading, unit Sensor: temperature | fields: ts, lon, level, depth Task: Fetch depth from air_quality where reading is greater than the minimum of depth in temperature for matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004002
train
v1
Sensor network script: Node: uv_index | code: hub | fields: lon, lat, ts, type Sensor: frost | fields: depth, reading, unit, type Task: Get level from uv_index where type appears in frost readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004003
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: lat, unit, reading, level Sensor: soil_moisture | fields: unit, depth, reading, ts Task: Retrieve lat from wind_speed that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004004
train
v3
Sensor network script: Node: visibility | code: stn | fields: depth, level, lat, type Sensor: temperature | fields: reading, lon, depth, lat Task: Get lon from visibility where depth exceeds the count of value from temperature for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004005
train
v3
Sensor network script: Node: pressure | code: stn | fields: lat, value, ts, lon Sensor: snow_depth | fields: level, value, type, qc Task: Get reading from pressure where depth exceeds the maximum reading from snow_depth for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004006
train
v2
Sensor network script: Node: rainfall | code: stn | fields: qc, value, level, lon Sensor: wind_speed | fields: ts, lat, qc, lon Task: Get lon from rainfall where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004007
train
v1
Sensor network script: Node: sunlight | code: mst | fields: reading, level, type, unit Sensor: temperature | fields: lon, reading, lat, qc Task: Get lon from sunlight where qc appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004008
train
v1
Sensor network script: Node: drought_index | code: thr | fields: level, ts, value, reading Sensor: pressure | fields: qc, unit, lat, level Task: Retrieve lon from drought_index whose ts is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004009
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: ts, qc, depth, value Sensor: soil_moisture | fields: type, reading, unit, depth Task: Fetch depth from snow_depth that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004010
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, level, lon, value Sensor: lightning | fields: type, level, depth, lat Task: Fetch depth from drought_index where reading is greater than the maximum of depth in lightning for matching ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004011
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: reading, depth, type, lat Sensor: wind_speed | fields: level, lat, depth, unit Task: Fetch lon from snow_depth where depth exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004012
train
v3
Sensor network script: Node: temperature | code: clr | fields: value, qc, lat, unit Sensor: dew_point | fields: type, depth, qc, unit Task: Fetch level from temperature where reading is greater than the count of of value in dew_point for matching depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004013
train
v3
Sensor network script: Node: evaporation | code: ref | fields: qc, lat, unit, lon Sensor: visibility | fields: value, qc, reading, lat Task: Fetch lat from evaporation where reading is greater than the maximum of depth in visibility for matching depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004014
train
v3
Sensor network script: Node: turbidity | code: thr | fields: lat, reading, ts, depth Sensor: frost | fields: level, value, reading, lat Task: Retrieve reading from turbidity with depth above the COUNT(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004015
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: reading, lon, depth, unit Sensor: lightning | fields: ts, unit, lat, lon Task: Fetch lon from snow_depth that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004016
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: qc, lat, lon, ts Sensor: rainfall | fields: value, ts, lat, unit Task: Fetch lon from snow_depth where value is greater than the count of of value in rainfall for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004017
train
v1
Sensor network script: Node: turbidity | code: gst | fields: lon, unit, reading, qc Sensor: dew_point | fields: reading, qc, lon, ts Task: Retrieve lon from turbidity whose type is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004018
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: type, lon, level, lat Sensor: air_quality | fields: depth, lat, qc, type Task: Get value from cloud_cover where depth exceeds the total value from air_quality for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004019
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: qc, depth, reading, ts Sensor: soil_moisture | fields: unit, qc, level, depth Task: Retrieve lon from snow_depth that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004020
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lon, level, reading, ts Sensor: frost | fields: ts, level, lat, type Task: Fetch depth from air_quality where depth exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004021
train
v3
Sensor network script: Node: turbidity | code: thr | fields: type, depth, reading, level Sensor: sunlight | fields: lat, ts, qc, lon Task: Fetch depth from turbidity where value is greater than the maximum of value in sunlight for matching qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004022
train
v1
Sensor network script: Node: sunlight | code: stn | fields: lon, qc, depth, unit Sensor: uv_index | fields: lon, type, reading, unit Task: Fetch lat from sunlight where depth exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004023
train
v3
Sensor network script: Node: temperature | code: thr | fields: reading, value, unit, type Sensor: dew_point | fields: ts, level, qc, unit Task: Retrieve reading from temperature with depth above the AVG(depth) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004024
train
v2
Sensor network script: Node: pressure | code: hub | fields: type, depth, reading, lat Sensor: humidity | fields: lon, depth, qc, level Task: Retrieve depth from pressure that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004025
train
v2
Sensor network script: Node: lightning | code: prt | fields: lon, lat, depth, qc Sensor: sunlight | fields: type, unit, depth, value Task: Fetch depth from lightning that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004026
train
v2
Sensor network script: Node: visibility | code: stn | fields: level, qc, type, value Sensor: uv_index | fields: level, depth, reading, unit Task: Get value from visibility where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004027
train
v1
Sensor network script: Node: air_quality | code: stn | fields: reading, lon, value, qc Sensor: soil_moisture | fields: lat, value, qc, lon Task: Fetch value from air_quality where unit exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004028
train
v1
Sensor network script: Node: air_quality | code: prt | fields: reading, lat, lon, value Sensor: uv_index | fields: lat, unit, value, level Task: Get value from air_quality where ts appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004029
train
v3
Sensor network script: Node: dew_point | code: thr | fields: ts, lon, unit, level Sensor: sunlight | fields: qc, type, ts, depth Task: Fetch level from dew_point where depth is greater than the count of of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004030
train
v2
Sensor network script: Node: sunlight | code: clr | fields: lon, qc, type, depth Sensor: humidity | fields: ts, lon, value, lat Task: Retrieve reading from sunlight that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004031
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: value, lon, type, lat Sensor: wind_speed | fields: reading, lon, lat, qc Task: Retrieve value from snow_depth that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004032
train
v3
Sensor network script: Node: evaporation | code: gst | fields: value, reading, type, qc Sensor: rainfall | fields: lon, ts, reading, lat Task: Retrieve lat from evaporation with depth above the MIN(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004033
train
v3
Sensor network script: Node: humidity | code: ref | fields: value, reading, ts, qc Sensor: temperature | fields: lon, depth, reading, level Task: Fetch depth from humidity where value is greater than the total of reading in temperature for matching unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004034
train
v3
Sensor network script: Node: air_quality | code: gst | fields: value, level, type, depth Sensor: uv_index | fields: lon, level, type, value Task: Get depth from air_quality where depth exceeds the maximum value from uv_index for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004035
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: reading, qc, lon, type Sensor: soil_moisture | fields: depth, type, level, qc Task: Get lon from cloud_cover where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004036
train
v3
Sensor network script: Node: pressure | code: hub | fields: unit, type, lat, qc Sensor: uv_index | fields: depth, qc, lon, type Task: Fetch level from pressure where reading is greater than the average of reading in uv_index for matching depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004037
train
v1
Sensor network script: Node: uv_index | code: prt | fields: depth, lon, lat, reading Sensor: turbidity | fields: reading, lat, type, qc Task: Retrieve level from uv_index whose type is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004038
train
v2
Sensor network script: Node: pressure | code: ref | fields: depth, ts, lat, type Sensor: evaporation | fields: unit, depth, level, value Task: Fetch lon from pressure that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004039
train
v1
Sensor network script: Node: humidity | code: gst | fields: qc, ts, type, value Sensor: sunlight | fields: type, reading, lat, depth Task: Get value from humidity where depth appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004040
train
v3
Sensor network script: Node: sunlight | code: mst | fields: level, lon, qc, reading Sensor: lightning | fields: lon, type, unit, value Task: Fetch value from sunlight where reading is greater than the total of depth in lightning for matching unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004041
train
v1
Sensor network script: Node: uv_index | code: gst | fields: level, unit, value, qc Sensor: humidity | fields: unit, reading, depth, level Task: Fetch depth from uv_index where qc exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004042
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: reading, lon, lat, value Sensor: pressure | fields: type, ts, reading, level Task: Get value from cloud_cover where qc appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004043
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lon, value, level, ts Sensor: humidity | fields: lon, lat, qc, level Task: Retrieve lat from sunlight with reading above the MIN(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004044
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lat, value, type, depth Sensor: lightning | fields: qc, type, reading, lon Task: Get lon from rainfall where depth exceeds the total value from lightning for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004045
train
v3
Sensor network script: Node: dew_point | code: ref | fields: level, ts, depth, type Sensor: drought_index | fields: depth, type, level, qc Task: Get lat from dew_point where reading exceeds the average value from drought_index for the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004046
train
v1
Sensor network script: Node: lightning | code: prt | fields: lat, type, lon, reading Sensor: frost | fields: value, ts, unit, lat Task: Get reading from lightning where qc appears in frost readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004047
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: lat, depth, type, unit Sensor: temperature | fields: lon, level, lat, reading Task: Fetch depth from soil_moisture where depth is greater than the total of depth in temperature for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004048
train
v2
Sensor network script: Node: humidity | code: thr | fields: type, depth, qc, level Sensor: pressure | fields: unit, ts, lat, level Task: Get depth from humidity where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004049
train
v1
Sensor network script: Node: temperature | code: clr | fields: depth, reading, value, unit Sensor: soil_moisture | fields: type, lat, value, qc Task: Fetch lon from temperature where type exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004050
train
v1
Sensor network script: Node: frost | code: ref | fields: qc, ts, value, reading Sensor: snow_depth | fields: lat, value, qc, level Task: Get lat from frost where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004051
train
v2
Sensor network script: Node: visibility | code: ref | fields: type, lon, reading, qc Sensor: pressure | fields: qc, type, lon, value Task: Get level from visibility where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004052
train
v2
Sensor network script: Node: dew_point | code: stn | fields: value, lon, level, lat Sensor: sunlight | fields: qc, reading, lon, type Task: Get lon from dew_point where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004053
train
v3
Sensor network script: Node: sunlight | code: thr | fields: level, reading, qc, value Sensor: cloud_cover | fields: unit, type, value, ts Task: Retrieve lon from sunlight with depth above the MAX(value) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004054
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, qc, type, unit Sensor: uv_index | fields: depth, unit, type, qc Task: Get value from dew_point where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004055
train
v1
Sensor network script: Node: visibility | code: clr | fields: unit, lat, qc, depth Sensor: lightning | fields: lon, level, unit, depth Task: Retrieve lon from visibility whose unit is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004056
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: lat, type, depth, reading Sensor: rainfall | fields: level, value, qc, lon Task: Fetch lat from snow_depth where reading is greater than the total of value in rainfall for matching type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004057
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lon, reading, depth, lat Sensor: frost | fields: type, qc, level, unit Task: Retrieve lon from wind_speed that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004058
train
v3
Sensor network script: Node: turbidity | code: gst | fields: value, depth, type, lon Sensor: snow_depth | fields: lon, qc, reading, type Task: Get depth from turbidity where depth exceeds the average value from snow_depth for the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004059
train
v3
Sensor network script: Node: visibility | code: hub | fields: qc, ts, lat, lon Sensor: frost | fields: lat, qc, value, depth Task: Retrieve value from visibility with value above the MIN(value) of frost readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="type"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004060
train
v1
Sensor network script: Node: lightning | code: mst | fields: depth, value, lon, ts Sensor: visibility | fields: depth, unit, ts, lat Task: Get lon from lightning where qc appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004061
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lat, type, unit, qc Sensor: snow_depth | fields: lon, lat, depth, level Task: Get depth from uv_index where reading exceeds the count of reading from snow_depth for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004062
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lon, qc, type, depth Sensor: rainfall | fields: type, value, ts, depth Task: Get lon from cloud_cover where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004063
train
v3
Sensor network script: Node: visibility | code: gst | fields: depth, ts, unit, level Sensor: rainfall | fields: qc, unit, level, type Task: Fetch lon from visibility where reading is greater than the count of of reading in rainfall for matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004064
train
v2
Sensor network script: Node: air_quality | code: stn | fields: depth, unit, level, lon Sensor: temperature | fields: value, lon, lat, type Task: Retrieve level from air_quality that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004065
train
v1
Sensor network script: Node: frost | code: prt | fields: qc, level, unit, lat Sensor: dew_point | fields: qc, unit, lon, value Task: Retrieve lon from frost whose ts is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004066
train
v2
Sensor network script: Node: lightning | code: thr | fields: lat, depth, value, unit Sensor: pressure | fields: unit, depth, ts, reading Task: Fetch lon from lightning that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004067
train
v2
Sensor network script: Node: evaporation | code: ref | fields: depth, qc, lon, unit Sensor: sunlight | fields: reading, unit, depth, value Task: Fetch level from evaporation that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004068
train
v1
Sensor network script: Node: frost | code: clr | fields: unit, ts, lon, lat Sensor: lightning | fields: ts, depth, type, qc Task: Fetch depth from frost where depth exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004069
train
v2
Sensor network script: Node: rainfall | code: ref | fields: lon, reading, level, depth Sensor: visibility | fields: ts, qc, level, type Task: Get value from rainfall where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004070
train
v1
Sensor network script: Node: drought_index | code: gst | fields: type, reading, level, value Sensor: humidity | fields: ts, value, lat, qc Task: Retrieve depth from drought_index whose type is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004071
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: qc, unit, depth, reading Sensor: cloud_cover | fields: value, type, unit, lon Task: Fetch depth from soil_moisture that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004072
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: reading, value, lon, unit Sensor: air_quality | fields: ts, unit, type, reading Task: Retrieve depth from snow_depth that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004073
train
v1
Sensor network script: Node: evaporation | code: thr | fields: qc, value, unit, lon Sensor: turbidity | fields: ts, qc, unit, reading Task: Retrieve lat from evaporation whose ts is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004074
train
v1
Sensor network script: Node: humidity | code: stn | fields: depth, lon, unit, reading Sensor: dew_point | fields: lat, level, depth, unit Task: Retrieve depth from humidity whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004075
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: ts, lon, type, value Sensor: turbidity | fields: depth, lon, ts, reading Task: Retrieve value from wind_speed with depth above the COUNT(depth) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004076
train
v1
Sensor network script: Node: visibility | code: thr | fields: qc, depth, value, type Sensor: rainfall | fields: lat, type, lon, qc Task: Retrieve level from visibility whose depth is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004077
train
v1
Sensor network script: Node: drought_index | code: clr | fields: type, level, ts, depth Sensor: sunlight | fields: type, lat, value, lon Task: Fetch depth from drought_index where unit exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004078
train
v3
Sensor network script: Node: drought_index | code: mst | fields: reading, unit, level, value Sensor: turbidity | fields: value, reading, qc, type Task: Retrieve lon from drought_index with depth above the AVG(reading) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004079
train
v3
Sensor network script: Node: dew_point | code: thr | fields: value, level, lat, reading Sensor: snow_depth | fields: lon, unit, value, reading Task: Fetch lat from dew_point where reading is greater than the total of value in snow_depth for matching unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004080
train
v1
Sensor network script: Node: air_quality | code: hub | fields: qc, lon, reading, value Sensor: frost | fields: unit, depth, level, qc Task: Retrieve value from air_quality whose ts is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004081
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: ts, qc, reading, value Sensor: uv_index | fields: type, lat, ts, qc Task: Get lon from snow_depth where depth exceeds the total value from uv_index for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004082
train
v2
Sensor network script: Node: turbidity | code: stn | fields: depth, qc, reading, type Sensor: humidity | fields: reading, value, type, lon Task: Retrieve reading from turbidity that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004083
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: unit, depth, ts, type Sensor: rainfall | fields: type, level, lon, ts Task: Retrieve value from cloud_cover with reading above the SUM(reading) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004084
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: depth, reading, unit, level Sensor: air_quality | fields: depth, value, lon, lat Task: Retrieve level from soil_moisture with depth above the COUNT(reading) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004085
train
v3
Sensor network script: Node: temperature | code: mst | fields: reading, value, qc, depth Sensor: cloud_cover | fields: value, lat, ts, qc Task: Retrieve reading from temperature with depth above the AVG(depth) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004086
train
v3
Sensor network script: Node: turbidity | code: thr | fields: reading, lat, unit, level Sensor: evaporation | fields: unit, level, lon, type Task: Retrieve reading from turbidity with reading above the SUM(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "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_004087
train
v1
Sensor network script: Node: uv_index | code: stn | fields: level, ts, value, type Sensor: air_quality | fields: qc, type, level, value Task: Get level from uv_index where ts appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004088
train
v3
Sensor network script: Node: visibility | code: clr | fields: depth, qc, lat, reading Sensor: turbidity | fields: qc, unit, type, lon Task: Get level from visibility where depth exceeds the count of depth from turbidity for the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004089
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: ts, value, depth, lat Sensor: wind_speed | fields: depth, qc, level, value Task: Get lon from snow_depth where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004090
train
v3
Sensor network script: Node: uv_index | code: thr | fields: reading, ts, qc, unit Sensor: rainfall | fields: level, unit, depth, lat Task: Retrieve lat from uv_index with reading above the COUNT(value) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004091
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: qc, ts, lat, reading Sensor: visibility | fields: level, qc, depth, reading Task: Retrieve lat from cloud_cover with value above the MAX(value) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004092
train
v1
Sensor network script: Node: sunlight | code: ref | fields: ts, reading, value, unit Sensor: temperature | fields: lon, ts, unit, level Task: Retrieve lat from sunlight whose depth is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004093
train
v2
Sensor network script: Node: pressure | code: gst | fields: lon, unit, value, ts Sensor: snow_depth | fields: level, lat, ts, lon Task: Fetch value from pressure that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004094
train
v1
Sensor network script: Node: turbidity | code: ref | fields: ts, reading, level, qc Sensor: sunlight | fields: depth, type, lon, value Task: Retrieve depth from turbidity whose depth is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004095
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: reading, lat, value, depth Sensor: soil_moisture | fields: lon, level, depth, type Task: Fetch level from wind_speed where value is greater than the average of reading in soil_moisture for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004096
train
v2
Sensor network script: Node: temperature | code: gst | fields: depth, unit, lon, type Sensor: pressure | fields: lat, level, qc, unit Task: Fetch level from temperature that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004097
train
v3
Sensor network script: Node: drought_index | code: gst | fields: unit, lat, qc, depth Sensor: lightning | fields: value, type, level, lon Task: Get lat from drought_index where depth exceeds the maximum value from lightning for the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004098
train
v3
Sensor network script: Node: evaporation | code: gst | fields: qc, lon, type, value Sensor: cloud_cover | fields: type, lat, reading, level Task: Get lon from evaporation where depth exceeds the total value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004099
train