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: frost | code: clr | fields: qc, unit, type, reading Sensor: air_quality | fields: qc, depth, level, lon Task: Retrieve reading from frost with value above the SUM(depth) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074800
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: type, value, ts, unit Sensor: snow_depth | fields: level, lat, reading, depth Task: Get depth from cloud_cover where value exceeds the minimum depth from snow_depth for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074801
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: lat, reading, ts, depth Sensor: drought_index | fields: depth, lon, ts, level Task: Retrieve value from wind_speed whose qc is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074802
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: unit, type, reading, lon Sensor: turbidity | fields: lat, unit, qc, lon Task: Retrieve value from wind_speed with reading above the AVG(depth) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074803
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: qc, value, depth, unit Sensor: drought_index | fields: reading, qc, depth, unit Task: Fetch value from cloud_cover where value is greater than the average of reading in drought_index for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074804
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: type, lon, reading, unit Sensor: wind_speed | fields: level, unit, qc, lon Task: Get value from cloud_cover where depth exceeds the minimum depth from wind_speed for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074805
train
v1
Sensor network script: Node: humidity | code: hub | fields: ts, level, reading, value Sensor: wind_speed | fields: depth, reading, ts, qc Task: Fetch lon from humidity where type exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074806
train
v2
Sensor network script: Node: drought_index | code: gst | fields: unit, ts, lon, lat Sensor: evaporation | fields: qc, lat, level, depth Task: Retrieve reading from drought_index that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074807
train
v3
Sensor network script: Node: frost | code: clr | fields: value, type, lat, qc Sensor: sunlight | fields: depth, level, type, reading Task: Get level from frost where depth exceeds the maximum value from sunlight for the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="level", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074808
train
v3
Sensor network script: Node: visibility | code: thr | fields: reading, level, unit, qc Sensor: wind_speed | fields: value, type, qc, unit Task: Get depth from visibility where value exceeds the total depth from wind_speed for the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "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_074809
train
v1
Sensor network script: Node: dew_point | code: prt | fields: lat, value, qc, reading Sensor: soil_moisture | fields: lat, value, unit, reading Task: Get lat from dew_point where unit appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074810
train
v3
Sensor network script: Node: air_quality | code: mst | fields: unit, lat, qc, type Sensor: frost | fields: lat, ts, unit, depth Task: Retrieve lon from air_quality with reading above the MIN(depth) of frost readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074811
train
v3
Sensor network script: Node: lightning | code: gst | fields: level, depth, reading, qc Sensor: humidity | fields: level, lat, type, reading Task: Get level from lightning where depth exceeds the total value from humidity for the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074812
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: reading, unit, value, lon Sensor: evaporation | fields: lat, ts, qc, type Task: Retrieve depth from soil_moisture with depth above the MAX(reading) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074813
train
v2
Sensor network script: Node: uv_index | code: prt | fields: ts, type, lat, level Sensor: temperature | fields: type, unit, value, qc Task: Get lat from uv_index where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074814
train
v1
Sensor network script: Node: frost | code: ref | fields: unit, reading, level, type Sensor: drought_index | fields: reading, type, depth, unit Task: Get depth from frost where type appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074815
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, lat, unit, depth Sensor: dew_point | fields: ts, depth, value, type Task: Get lon from rainfall where qc appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074816
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: unit, value, level, lat Sensor: temperature | fields: qc, level, ts, reading Task: Fetch value from wind_speed that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074817
train
v3
Sensor network script: Node: uv_index | code: stn | fields: reading, lon, type, lat Sensor: rainfall | fields: reading, lat, unit, lon Task: Retrieve reading from uv_index with value above the MAX(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074818
train
v1
Sensor network script: Node: dew_point | code: gst | fields: lon, qc, depth, unit Sensor: cloud_cover | fields: type, lon, qc, level Task: Retrieve reading from dew_point whose ts is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074819
train
v3
Sensor network script: Node: frost | code: hub | fields: level, lat, reading, value Sensor: cloud_cover | fields: type, reading, lat, qc Task: Get lon from frost where reading exceeds the maximum value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074820
train
v3
Sensor network script: Node: humidity | code: thr | fields: lon, lat, qc, level Sensor: air_quality | fields: value, depth, qc, unit Task: Get lon from humidity where reading exceeds the average value from air_quality for the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074821
train
v3
Sensor network script: Node: visibility | code: stn | fields: lat, depth, unit, lon Sensor: humidity | fields: lon, lat, level, qc Task: Get value from visibility where depth exceeds the average depth from humidity for the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074822
train
v2
Sensor network script: Node: evaporation | code: mst | fields: lat, reading, qc, lon Sensor: soil_moisture | fields: lat, type, ts, lon Task: Retrieve depth from evaporation that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074823
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: unit, lon, ts, lat Sensor: visibility | fields: qc, lon, unit, type Task: Get reading from wind_speed where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074824
train
v3
Sensor network script: Node: temperature | code: clr | fields: ts, value, unit, lat Sensor: dew_point | fields: ts, reading, level, unit Task: Get depth from temperature where depth exceeds the maximum value from dew_point for the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074825
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lat, reading, ts, type Sensor: dew_point | fields: qc, reading, lon, unit Task: Fetch level from air_quality where ts exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074826
train
v1
Sensor network script: Node: pressure | code: prt | fields: lon, reading, level, type Sensor: lightning | fields: reading, lon, unit, value Task: Fetch lat from pressure where ts exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074827
train
v3
Sensor network script: Node: lightning | code: thr | fields: type, unit, qc, lon Sensor: humidity | fields: reading, qc, type, lat Task: Get lat from lightning where reading exceeds the count of reading from humidity for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074828
train
v1
Sensor network script: Node: frost | code: ref | fields: qc, ts, lon, lat Sensor: humidity | fields: unit, qc, lat, value Task: Fetch reading from frost where depth exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074829
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: depth, reading, level, qc Sensor: lightning | fields: lat, type, level, ts Task: Retrieve lat from snow_depth with depth above the COUNT(value) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074830
train
v1
Sensor network script: Node: uv_index | code: clr | fields: value, qc, reading, level Sensor: cloud_cover | fields: lon, type, unit, lat Task: Retrieve value from uv_index whose depth is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074831
train
v1
Sensor network script: Node: temperature | code: ref | fields: level, ts, value, type Sensor: cloud_cover | fields: lat, value, lon, reading Task: Retrieve level from temperature whose ts is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074832
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: reading, value, lon, depth Sensor: visibility | fields: unit, ts, depth, level Task: Retrieve lon from snow_depth whose unit is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074833
train
v2
Sensor network script: Node: air_quality | code: ref | fields: qc, lon, reading, type Sensor: uv_index | fields: qc, unit, type, level Task: Fetch depth from air_quality that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074834
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lon, depth, ts, value Sensor: drought_index | fields: unit, lat, type, value Task: Get reading from uv_index where ts appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074835
train
v1
Sensor network script: Node: frost | code: ref | fields: level, type, reading, lat Sensor: wind_speed | fields: level, qc, value, lat Task: Get reading from frost where unit appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074836
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, qc, lon, level Sensor: drought_index | fields: lon, qc, type, depth Task: Retrieve value from air_quality whose depth is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074837
train
v3
Sensor network script: Node: lightning | code: thr | fields: qc, reading, lat, depth Sensor: rainfall | fields: level, depth, lon, unit Task: Get lon from lightning where depth exceeds the average reading from rainfall for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074838
train
v3
Sensor network script: Node: rainfall | code: clr | fields: type, qc, value, ts Sensor: air_quality | fields: unit, lat, type, ts Task: Retrieve level from rainfall with value above the MIN(reading) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074839
train
v2
Sensor network script: Node: visibility | code: stn | fields: qc, type, lat, lon Sensor: drought_index | fields: qc, type, unit, reading Task: Get lat from visibility where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074840
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, ts, type, level Sensor: wind_speed | fields: reading, lon, value, depth Task: Retrieve value from lightning with value above the COUNT(value) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074841
train
v2
Sensor network script: Node: frost | code: ref | fields: depth, lat, qc, unit Sensor: humidity | fields: level, value, lat, qc Task: Fetch reading from frost that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074842
train
v2
Sensor network script: Node: frost | code: ref | fields: level, value, reading, unit Sensor: cloud_cover | fields: level, type, depth, value Task: Retrieve level from frost that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074843
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: depth, level, ts, lat Sensor: temperature | fields: ts, type, unit, level Task: Get depth from snow_depth where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074844
train
v3
Sensor network script: Node: frost | code: clr | fields: type, unit, depth, qc Sensor: temperature | fields: value, depth, ts, lon Task: Retrieve reading from frost with value above the SUM(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074845
train
v3
Sensor network script: Node: air_quality | code: mst | fields: value, unit, reading, qc Sensor: dew_point | fields: type, unit, lat, value Task: Get reading from air_quality where depth exceeds the average value from dew_point for the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074846
train
v2
Sensor network script: Node: uv_index | code: gst | fields: depth, ts, level, type Sensor: temperature | fields: level, lon, lat, qc Task: Retrieve lon from uv_index that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074847
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: unit, lon, qc, depth Sensor: air_quality | fields: lat, type, level, lon Task: Retrieve reading from cloud_cover that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074848
train
v2
Sensor network script: Node: frost | code: gst | fields: reading, unit, lon, level Sensor: humidity | fields: lat, unit, type, depth Task: Retrieve depth from frost that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074849
train
v3
Sensor network script: Node: pressure | code: hub | fields: depth, ts, type, reading Sensor: soil_moisture | fields: ts, depth, reading, lat Task: Get level from pressure where value exceeds the minimum value from soil_moisture for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "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_074850
train
v2
Sensor network script: Node: lightning | code: prt | fields: level, lon, value, unit Sensor: evaporation | fields: ts, reading, qc, lon Task: Fetch lat from lightning that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074851
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: ts, level, value, type Sensor: turbidity | fields: type, reading, value, lon Task: Fetch lat from snow_depth where type exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074852
train
v2
Sensor network script: Node: drought_index | code: mst | fields: reading, level, value, depth Sensor: humidity | fields: value, lon, depth, qc Task: Get lat from drought_index where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074853
train
v1
Sensor network script: Node: pressure | code: gst | fields: lat, value, unit, qc Sensor: drought_index | fields: reading, lon, unit, ts Task: Fetch reading from pressure where ts exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074854
train
v2
Sensor network script: Node: humidity | code: prt | fields: lat, lon, level, ts Sensor: wind_speed | fields: depth, lat, lon, level Task: Retrieve value from humidity that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074855
train
v1
Sensor network script: Node: uv_index | code: stn | fields: level, lon, ts, depth Sensor: turbidity | fields: value, ts, qc, unit Task: Retrieve lat from uv_index whose ts is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074856
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: unit, qc, lat, depth Sensor: wind_speed | fields: ts, depth, type, qc Task: Get lat from snow_depth where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074857
train
v2
Sensor network script: Node: drought_index | code: stn | fields: unit, reading, type, level Sensor: frost | fields: unit, level, depth, ts Task: Fetch reading from drought_index that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074858
train
v2
Sensor network script: Node: visibility | code: hub | fields: ts, type, value, unit Sensor: pressure | fields: lon, value, unit, type Task: Retrieve level from visibility that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074859
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: depth, type, qc, level Sensor: evaporation | fields: lat, unit, qc, level Task: Get level from wind_speed where reading exceeds the maximum depth from evaporation for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074860
train
v3
Sensor network script: Node: temperature | code: mst | fields: value, depth, unit, qc Sensor: turbidity | fields: type, lon, ts, level Task: Get lat from temperature where value exceeds the minimum reading from turbidity for the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074861
train
v2
Sensor network script: Node: air_quality | code: prt | fields: depth, value, type, reading Sensor: uv_index | fields: qc, lat, value, ts Task: Get value from air_quality where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( 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", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074862
train
v2
Sensor network script: Node: frost | code: hub | fields: type, reading, lon, level Sensor: wind_speed | fields: type, qc, value, reading Task: Retrieve depth from frost that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074863
train
v2
Sensor network script: Node: visibility | code: stn | fields: depth, lon, qc, reading Sensor: frost | fields: value, type, reading, qc Task: Fetch reading from visibility that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074864
train
v2
Sensor network script: Node: air_quality | code: ref | fields: value, reading, unit, type Sensor: drought_index | fields: depth, type, unit, ts Task: Retrieve value 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="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074865
train
v3
Sensor network script: Node: temperature | code: mst | fields: ts, level, qc, reading Sensor: uv_index | fields: ts, depth, unit, value Task: Get lat from temperature where value exceeds the count of reading from uv_index for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074866
train
v3
Sensor network script: Node: evaporation | code: ref | fields: qc, type, reading, depth Sensor: temperature | fields: reading, ts, value, qc Task: Retrieve value from evaporation with reading above the AVG(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074867
train
v1
Sensor network script: Node: uv_index | code: gst | fields: reading, unit, qc, ts Sensor: soil_moisture | fields: level, lon, depth, qc Task: Fetch value from uv_index where qc exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074868
train
v3
Sensor network script: Node: air_quality | code: prt | fields: level, unit, qc, lat Sensor: rainfall | fields: qc, value, depth, type Task: Fetch depth from air_quality where value is greater than the average of reading in rainfall for matching unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074869
train
v1
Sensor network script: Node: pressure | code: prt | fields: value, type, level, depth Sensor: evaporation | fields: reading, lon, unit, level Task: Retrieve reading from pressure whose depth is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074870
train
v2
Sensor network script: Node: air_quality | code: hub | fields: qc, level, unit, depth Sensor: frost | fields: unit, reading, type, lat Task: Fetch value from air_quality that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( 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", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074871
train
v1
Sensor network script: Node: sunlight | code: thr | fields: qc, ts, lon, reading Sensor: rainfall | fields: qc, ts, reading, lat Task: Retrieve lon from sunlight whose type is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074872
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: ts, level, type, lat Sensor: sunlight | fields: depth, reading, lon, type Task: Get level from cloud_cover where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074873
train
v1
Sensor network script: Node: pressure | code: hub | fields: ts, lon, level, qc Sensor: temperature | fields: reading, value, depth, level Task: Fetch lon from pressure where qc exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074874
train
v1
Sensor network script: Node: pressure | code: thr | fields: unit, qc, value, depth Sensor: air_quality | fields: type, lon, ts, reading Task: Fetch reading from pressure where ts exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074875
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: ts, lat, type, unit Sensor: rainfall | fields: value, type, qc, lat Task: Retrieve reading from cloud_cover with reading above the AVG(value) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074876
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: type, reading, unit, ts Sensor: evaporation | fields: type, lat, ts, qc Task: Fetch depth from snow_depth where reading is greater than the count of of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074877
train
v3
Sensor network script: Node: temperature | code: stn | fields: value, unit, ts, qc Sensor: uv_index | fields: reading, type, depth, lon Task: Fetch lon from temperature where depth is greater than the maximum of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074878
train
v2
Sensor network script: Node: temperature | code: mst | fields: qc, lat, ts, unit Sensor: visibility | fields: ts, unit, qc, depth Task: Get reading from temperature where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074879
train
v1
Sensor network script: Node: uv_index | code: gst | fields: depth, type, unit, lat Sensor: pressure | fields: reading, unit, depth, type Task: Fetch reading from uv_index where qc exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074880
train
v3
Sensor network script: Node: frost | code: stn | fields: reading, type, value, level Sensor: rainfall | fields: reading, type, depth, lon Task: Get reading from frost where reading exceeds the minimum value from rainfall for the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074881
train
v3
Sensor network script: Node: frost | code: mst | fields: reading, ts, depth, value Sensor: air_quality | fields: level, unit, type, reading Task: Fetch value from frost where value is greater than the average of depth in air_quality for matching type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074882
train
v2
Sensor network script: Node: drought_index | code: mst | fields: unit, lon, ts, qc Sensor: temperature | fields: lon, lat, qc, ts Task: Retrieve value from drought_index that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074883
train
v3
Sensor network script: Node: dew_point | code: thr | fields: value, depth, ts, qc Sensor: rainfall | fields: qc, lon, depth, unit Task: Retrieve reading from dew_point with reading above the SUM(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074884
train
v2
Sensor network script: Node: humidity | code: stn | fields: value, lat, type, level Sensor: rainfall | fields: depth, ts, unit, qc Task: Retrieve depth from humidity that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074885
train
v3
Sensor network script: Node: temperature | code: ref | fields: unit, reading, lon, qc Sensor: sunlight | fields: lon, unit, depth, ts Task: Retrieve reading from temperature with depth above the MAX(value) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074886
train
v1
Sensor network script: Node: air_quality | code: prt | fields: unit, level, qc, value Sensor: snow_depth | fields: unit, value, qc, reading Task: Fetch lat from air_quality where unit exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074887
train
v3
Sensor network script: Node: humidity | code: gst | fields: ts, level, lat, type Sensor: visibility | fields: qc, ts, value, lon Task: Fetch level from humidity where value is greater than the maximum of reading in visibility for matching depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074888
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: level, type, reading, unit Sensor: frost | fields: level, reading, value, lat Task: Get lon from soil_moisture where depth appears in frost readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074889
train
v3
Sensor network script: Node: uv_index | code: hub | fields: qc, reading, unit, level Sensor: soil_moisture | fields: unit, type, qc, lat Task: Retrieve value from uv_index with value above the COUNT(depth) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074890
train
v2
Sensor network script: Node: visibility | code: gst | fields: qc, reading, ts, lat Sensor: lightning | fields: lat, ts, reading, value Task: Fetch level from visibility that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074891
train
v3
Sensor network script: Node: evaporation | code: gst | fields: value, reading, qc, lon Sensor: drought_index | fields: depth, lat, value, reading Task: Fetch depth from evaporation where depth is greater than the average of depth in drought_index for matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074892
train
v3
Sensor network script: Node: pressure | code: thr | fields: level, value, depth, qc Sensor: wind_speed | fields: lon, value, type, lat Task: Get lat from pressure where reading exceeds the maximum reading from wind_speed for the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074893
train
v3
Sensor network script: Node: air_quality | code: stn | fields: qc, ts, depth, reading Sensor: frost | fields: value, level, lat, depth Task: Get lon from air_quality where reading exceeds the minimum depth from frost for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074894
train
v2
Sensor network script: Node: humidity | code: prt | fields: value, reading, depth, unit Sensor: drought_index | fields: ts, lon, level, unit Task: Fetch depth from humidity that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074895
train
v1
Sensor network script: Node: air_quality | code: stn | fields: ts, value, type, level Sensor: snow_depth | fields: lat, unit, qc, lon Task: Get level from air_quality where depth appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074896
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: type, ts, lat, value Sensor: cloud_cover | fields: level, ts, lat, reading Task: Retrieve level from snow_depth whose depth is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074897
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, lat, reading, unit Sensor: visibility | fields: qc, reading, type, unit Task: Get reading from rainfall where value exceeds the total value from visibility for the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074898
train
v1
Sensor network script: Node: frost | code: stn | fields: type, value, lat, unit Sensor: visibility | fields: unit, level, value, type Task: Retrieve value from frost whose qc is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074899
train