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: air_quality | code: mst | fields: level, value, qc, unit Sensor: humidity | fields: value, lat, unit, lon Task: Retrieve depth from air_quality with reading above the COUNT(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016800
train
v3
Sensor network script: Node: sunlight | code: ref | fields: level, reading, value, type Sensor: turbidity | fields: reading, ts, unit, lat Task: Fetch lat from sunlight where value is greater than the maximum of depth in turbidity for matching depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016801
train
v3
Sensor network script: Node: uv_index | code: stn | fields: ts, value, depth, lat Sensor: drought_index | fields: reading, qc, lon, level Task: Retrieve lon from uv_index with value above the MIN(depth) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016802
train
v2
Sensor network script: Node: rainfall | code: gst | fields: lat, qc, lon, value Sensor: air_quality | fields: reading, unit, type, level Task: Retrieve value from rainfall that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016803
train
v3
Sensor network script: Node: humidity | code: hub | fields: type, lat, qc, reading Sensor: frost | fields: type, depth, unit, level Task: Retrieve value from humidity with value above the AVG(depth) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016804
train
v3
Sensor network script: Node: air_quality | code: thr | fields: lat, lon, type, unit Sensor: evaporation | fields: type, lon, ts, level Task: Get depth from air_quality where reading exceeds the total value from evaporation for the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016805
train
v3
Sensor network script: Node: drought_index | code: hub | fields: value, ts, lat, type Sensor: humidity | fields: lat, qc, unit, type Task: Retrieve value from drought_index with value above the MAX(depth) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016806
train
v2
Sensor network script: Node: rainfall | code: thr | fields: unit, lat, qc, value Sensor: humidity | fields: ts, unit, lat, level Task: Fetch level from rainfall that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016807
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: qc, value, lat, unit Sensor: air_quality | fields: lon, type, ts, depth Task: Retrieve lon from soil_moisture with reading above the SUM(depth) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016808
train
v1
Sensor network script: Node: uv_index | code: stn | fields: ts, unit, type, depth Sensor: evaporation | fields: depth, reading, type, ts Task: Retrieve level from uv_index whose ts is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016809
train
v2
Sensor network script: Node: frost | code: gst | fields: lon, qc, depth, value Sensor: turbidity | fields: unit, type, reading, value Task: Retrieve lon from frost that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016810
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: lat, depth, level, unit Sensor: uv_index | fields: ts, reading, type, qc Task: Fetch level from soil_moisture where value is greater than the maximum of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016811
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, reading, value, depth Sensor: drought_index | fields: ts, unit, level, reading Task: Retrieve lon from air_quality that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016812
train
v2
Sensor network script: Node: rainfall | code: stn | fields: type, qc, lat, unit Sensor: snow_depth | fields: unit, level, lat, type Task: Get level from rainfall where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016813
train
v1
Sensor network script: Node: pressure | code: stn | fields: level, lon, reading, ts Sensor: dew_point | fields: level, lon, lat, unit Task: Retrieve reading from pressure whose type is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016814
train
v1
Sensor network script: Node: turbidity | code: thr | fields: unit, depth, qc, value Sensor: uv_index | fields: lon, qc, ts, lat Task: Get lon from turbidity where type appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016815
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: depth, value, unit, level Sensor: evaporation | fields: type, lon, depth, value Task: Get level from snow_depth where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016816
train
v3
Sensor network script: Node: frost | code: prt | fields: reading, ts, unit, level Sensor: turbidity | fields: reading, unit, level, value Task: Retrieve lon from frost with reading above the MIN(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016817
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: ts, depth, qc, reading Sensor: snow_depth | fields: level, qc, lon, reading Task: Get reading from wind_speed where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016818
train
v1
Sensor network script: Node: frost | code: mst | fields: level, qc, lat, depth Sensor: air_quality | fields: ts, level, lat, depth Task: Get lon from frost where ts appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016819
train
v1
Sensor network script: Node: uv_index | code: thr | fields: type, level, ts, value Sensor: snow_depth | fields: value, lat, reading, qc Task: Retrieve level from uv_index whose ts is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016820
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: level, lon, value, reading Sensor: pressure | fields: value, ts, level, reading Task: Retrieve value from snow_depth whose qc is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016821
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: depth, reading, level, unit Sensor: cloud_cover | fields: type, ts, reading, level Task: Get reading from soil_moisture where ts appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016822
train
v3
Sensor network script: Node: lightning | code: mst | fields: lat, value, reading, level Sensor: dew_point | fields: lat, unit, lon, reading Task: Fetch level from lightning where reading is greater than the total of reading in dew_point for matching type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "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_016823
train
v3
Sensor network script: Node: lightning | code: thr | fields: ts, lon, reading, unit Sensor: uv_index | fields: reading, type, value, qc Task: Fetch value from lightning where reading is greater than the minimum of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016824
train
v2
Sensor network script: Node: temperature | code: hub | fields: reading, lon, qc, value Sensor: visibility | fields: depth, unit, qc, type Task: Get level from temperature where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016825
train
v3
Sensor network script: Node: uv_index | code: gst | fields: reading, level, lat, qc Sensor: pressure | fields: lon, reading, qc, ts Task: Retrieve level from uv_index with depth above the MAX(depth) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016826
train
v2
Sensor network script: Node: drought_index | code: prt | fields: unit, lat, reading, depth Sensor: wind_speed | fields: lon, type, ts, qc Task: Fetch lon from drought_index that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016827
train
v2
Sensor network script: Node: dew_point | code: ref | fields: unit, level, lat, type Sensor: temperature | fields: depth, ts, qc, lat Task: Get level from dew_point where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016828
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lon, qc, level, lat Sensor: air_quality | fields: value, unit, lat, reading Task: Fetch reading from cloud_cover where qc exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016829
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: qc, level, lon, value Sensor: temperature | fields: lat, depth, level, value Task: Get value from cloud_cover where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016830
train
v3
Sensor network script: Node: sunlight | code: mst | fields: unit, lat, ts, value Sensor: temperature | fields: unit, level, reading, qc Task: Get level from sunlight where value exceeds the total depth from temperature for the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016831
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: type, unit, lat, qc Sensor: temperature | fields: qc, depth, lat, lon Task: Fetch lon from soil_moisture that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016832
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: ts, reading, lat, qc Sensor: visibility | fields: lat, ts, lon, depth Task: Retrieve value from wind_speed with value above the SUM(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016833
train
v2
Sensor network script: Node: uv_index | code: gst | fields: lat, reading, unit, value Sensor: dew_point | fields: unit, qc, type, lat Task: Retrieve value from uv_index that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016834
train
v3
Sensor network script: Node: air_quality | code: stn | fields: unit, lon, reading, type Sensor: temperature | fields: lat, ts, depth, level Task: Retrieve lon from air_quality with reading above the SUM(value) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016835
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: type, lon, depth, reading Sensor: air_quality | fields: depth, type, unit, reading Task: Get lon from soil_moisture where qc appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016836
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: lat, ts, lon, qc Sensor: pressure | fields: type, unit, lat, level Task: Retrieve value from snow_depth with depth above the MIN(depth) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016837
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: value, qc, depth, ts Sensor: drought_index | fields: type, depth, qc, unit Task: Get lat from wind_speed where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016838
train
v3
Sensor network script: Node: rainfall | code: gst | fields: qc, depth, lat, type Sensor: visibility | fields: type, value, reading, lat Task: Fetch lon from rainfall where value is greater than the total of depth in visibility for matching qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016839
train
v1
Sensor network script: Node: frost | code: ref | fields: type, lon, reading, unit Sensor: pressure | fields: value, ts, unit, qc Task: Fetch value from frost where ts exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016840
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: level, type, lat, reading Sensor: dew_point | fields: lat, level, qc, lon Task: Fetch value from snow_depth where qc exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016841
train
v2
Sensor network script: Node: pressure | code: thr | fields: level, lat, unit, lon Sensor: wind_speed | fields: value, ts, type, depth Task: Get level from pressure where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016842
train
v3
Sensor network script: Node: humidity | code: clr | fields: value, lat, ts, depth Sensor: pressure | fields: type, unit, level, value Task: Fetch lat from humidity where depth is greater than the maximum of depth in pressure for matching type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016843
train
v2
Sensor network script: Node: uv_index | code: clr | fields: reading, type, qc, lat Sensor: sunlight | fields: level, qc, reading, value Task: Fetch value from uv_index that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016844
train
v3
Sensor network script: Node: rainfall | code: ref | fields: type, level, unit, value Sensor: humidity | fields: level, unit, reading, lon Task: Fetch depth from rainfall where reading is greater than the minimum of depth in humidity for matching unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016845
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: level, type, qc, lat Sensor: frost | fields: type, level, reading, ts Task: Fetch depth from soil_moisture where value is greater than the maximum of depth in frost for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016846
train
v2
Sensor network script: Node: dew_point | code: thr | fields: qc, lat, lon, value Sensor: uv_index | fields: type, unit, level, lat Task: Retrieve reading from dew_point that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016847
train
v1
Sensor network script: Node: pressure | code: prt | fields: lat, depth, qc, unit Sensor: sunlight | fields: reading, unit, ts, type Task: Get reading from pressure where qc appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016848
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: ts, value, level, unit Sensor: snow_depth | fields: ts, lat, lon, level Task: Get depth from soil_moisture where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016849
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: reading, qc, unit, value Sensor: rainfall | fields: reading, ts, qc, lat Task: Retrieve value from wind_speed that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016850
train
v1
Sensor network script: Node: humidity | code: hub | fields: reading, ts, lat, value Sensor: uv_index | fields: level, reading, value, qc Task: Get depth from humidity where qc appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016851
train
v2
Sensor network script: Node: frost | code: mst | fields: reading, unit, qc, level Sensor: rainfall | fields: lat, unit, reading, level Task: Retrieve value from frost that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016852
train
v1
Sensor network script: Node: air_quality | code: gst | fields: ts, type, lon, level Sensor: temperature | fields: value, type, reading, level Task: Retrieve depth from air_quality whose qc is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016853
train
v1
Sensor network script: Node: lightning | code: gst | fields: ts, depth, lon, level Sensor: uv_index | fields: value, depth, ts, lon Task: Retrieve level from lightning whose unit is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016854
train
v2
Sensor network script: Node: rainfall | code: mst | fields: level, unit, ts, qc Sensor: sunlight | fields: reading, type, qc, lat Task: Retrieve lon from rainfall that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016855
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: ts, level, unit, qc Sensor: pressure | fields: level, ts, value, type Task: Retrieve lon from wind_speed that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016856
train
v3
Sensor network script: Node: pressure | code: ref | fields: type, value, ts, level Sensor: dew_point | fields: type, ts, value, lon Task: Get level from pressure where depth exceeds the total depth from dew_point for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016857
train
v2
Sensor network script: Node: lightning | code: ref | fields: reading, unit, ts, lat Sensor: visibility | fields: level, type, qc, ts Task: Fetch lon from lightning that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016858
train
v2
Sensor network script: Node: humidity | code: ref | fields: value, unit, type, level Sensor: turbidity | fields: level, ts, unit, reading Task: Retrieve value from humidity that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016859
train
v2
Sensor network script: Node: dew_point | code: prt | fields: ts, type, depth, value Sensor: humidity | fields: ts, qc, unit, lon Task: Fetch value from dew_point that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016860
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: value, level, reading, type Sensor: visibility | fields: level, type, reading, lon Task: Retrieve depth from cloud_cover with reading above the COUNT(reading) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016861
train
v2
Sensor network script: Node: sunlight | code: prt | fields: level, ts, unit, lat Sensor: visibility | fields: unit, lat, value, qc Task: Get lon from sunlight where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016862
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: value, unit, type, lat Sensor: frost | fields: lat, ts, type, level Task: Get depth from snow_depth where ts appears in frost readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016863
train
v1
Sensor network script: Node: temperature | code: gst | fields: unit, lon, reading, value Sensor: snow_depth | fields: qc, unit, lon, reading Task: Retrieve level from temperature whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016864
train
v1
Sensor network script: Node: visibility | code: prt | fields: lon, value, depth, lat Sensor: uv_index | fields: lon, ts, reading, unit Task: Retrieve depth from visibility whose ts is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016865
train
v2
Sensor network script: Node: pressure | code: stn | fields: type, depth, ts, reading Sensor: temperature | fields: qc, lon, level, reading Task: Fetch depth from pressure that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016866
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: lat, value, reading, ts Sensor: evaporation | fields: type, lat, level, depth Task: Get value from wind_speed where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016867
train
v2
Sensor network script: Node: sunlight | code: gst | fields: qc, ts, level, type Sensor: evaporation | fields: depth, lat, qc, value Task: Get value from sunlight where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016868
train
v2
Sensor network script: Node: turbidity | code: gst | fields: unit, type, level, lon Sensor: cloud_cover | fields: lat, ts, qc, level Task: Fetch lat from turbidity that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016869
train
v2
Sensor network script: Node: uv_index | code: clr | fields: reading, ts, unit, lat Sensor: sunlight | fields: qc, reading, depth, lon Task: Retrieve reading from uv_index that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016870
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lon, reading, level, qc Sensor: pressure | fields: lat, level, qc, value Task: Get lon from rainfall where unit appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016871
train
v3
Sensor network script: Node: turbidity | code: stn | fields: reading, lat, depth, type Sensor: evaporation | fields: type, unit, ts, lat Task: Fetch level from turbidity where reading is greater than the count of of depth in evaporation for matching type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016872
train
v1
Sensor network script: Node: air_quality | code: thr | fields: ts, unit, lat, type Sensor: drought_index | fields: type, unit, level, lat Task: Get lat from air_quality where depth appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016873
train
v3
Sensor network script: Node: evaporation | code: thr | fields: qc, reading, level, lon Sensor: drought_index | fields: qc, type, unit, level Task: Get level from evaporation where reading exceeds the minimum reading from drought_index for the same qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016874
train
v2
Sensor network script: Node: rainfall | code: hub | fields: ts, qc, lat, reading Sensor: dew_point | fields: reading, level, ts, unit Task: Get depth from rainfall where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016875
train
v2
Sensor network script: Node: rainfall | code: hub | fields: depth, unit, value, ts Sensor: frost | fields: value, type, reading, level Task: Get reading from rainfall where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016876
train
v2
Sensor network script: Node: humidity | code: clr | fields: unit, depth, ts, type Sensor: snow_depth | fields: unit, depth, reading, value Task: Retrieve lat from humidity that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016877
train
v2
Sensor network script: Node: humidity | code: gst | fields: qc, level, depth, unit Sensor: cloud_cover | fields: lat, ts, unit, value Task: Get value from humidity where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016878
train
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, lat, lon, type Sensor: visibility | fields: value, type, lat, qc Task: Fetch reading from dew_point where reading is greater than the total of reading in visibility for matching depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016879
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: type, unit, lat, ts Sensor: rainfall | fields: ts, level, reading, type Task: Fetch value from snow_depth where type exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016880
train
v2
Sensor network script: Node: rainfall | code: ref | fields: lat, type, lon, unit Sensor: frost | fields: value, ts, type, reading Task: Retrieve value from rainfall that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016881
train
v3
Sensor network script: Node: evaporation | code: thr | fields: level, depth, type, lon Sensor: visibility | fields: level, unit, lat, depth Task: Get level from evaporation where reading exceeds the minimum reading from visibility for the same qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016882
train
v3
Sensor network script: Node: air_quality | code: gst | fields: reading, lon, qc, level Sensor: uv_index | fields: lon, unit, ts, level Task: Fetch level from air_quality where reading is greater than the average of depth in uv_index for matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016883
train
v3
Sensor network script: Node: temperature | code: gst | fields: qc, depth, lon, lat Sensor: snow_depth | fields: value, reading, type, depth Task: Get depth from temperature where reading exceeds the total depth from snow_depth for the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016884
train
v3
Sensor network script: Node: frost | code: thr | fields: level, unit, type, lat Sensor: lightning | fields: lat, unit, qc, value Task: Retrieve lon from frost with depth above the COUNT(reading) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016885
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: lon, type, level, reading Sensor: drought_index | fields: lon, unit, reading, ts Task: Retrieve depth from soil_moisture with reading above the AVG(depth) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016886
train
v2
Sensor network script: Node: visibility | code: clr | fields: unit, qc, lat, lon Sensor: turbidity | fields: reading, type, depth, qc Task: Retrieve lon from visibility that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016887
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lat, lon, ts, type Sensor: air_quality | fields: lon, depth, unit, type Task: Fetch lat from soil_moisture where type exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016888
train
v3
Sensor network script: Node: lightning | code: hub | fields: depth, reading, level, type Sensor: dew_point | fields: qc, level, reading, type Task: Get value from lightning where depth exceeds the minimum reading from dew_point for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016889
train
v1
Sensor network script: Node: frost | code: hub | fields: value, depth, qc, lon Sensor: evaporation | fields: lon, lat, reading, ts Task: Fetch lat from frost where ts exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016890
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: lon, value, reading, qc Sensor: dew_point | fields: type, unit, value, ts Task: Fetch value from snow_depth that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016891
train
v3
Sensor network script: Node: pressure | code: ref | fields: qc, lon, type, unit Sensor: snow_depth | fields: ts, lat, type, reading Task: Get value from pressure where depth exceeds the maximum depth from snow_depth for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016892
train
v1
Sensor network script: Node: drought_index | code: prt | fields: depth, value, ts, qc Sensor: snow_depth | fields: lat, ts, qc, lon Task: Get lon from drought_index where unit appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016893
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: level, depth, lon, reading Sensor: snow_depth | fields: unit, reading, level, qc Task: Retrieve lat from soil_moisture that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016894
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, ts, level, reading Sensor: snow_depth | fields: qc, value, lat, unit Task: Retrieve level from drought_index with reading above the MIN(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016895
train
v2
Sensor network script: Node: sunlight | code: clr | fields: unit, level, depth, ts Sensor: air_quality | fields: type, unit, value, reading Task: Fetch depth from sunlight that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016896
train
v3
Sensor network script: Node: lightning | code: stn | fields: reading, type, qc, lon Sensor: temperature | fields: unit, ts, value, qc Task: Retrieve lon from lightning with depth above the COUNT(reading) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016897
train
v3
Sensor network script: Node: lightning | code: hub | fields: reading, qc, lat, level Sensor: dew_point | fields: level, lat, ts, qc Task: Retrieve depth from lightning with reading above the SUM(value) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016898
train
v3
Sensor network script: Node: rainfall | code: prt | fields: reading, lat, level, unit Sensor: wind_speed | fields: type, unit, qc, value Task: Get value from rainfall where depth exceeds the average reading from wind_speed for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016899
train