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: wind_speed | code: clr | fields: type, unit, value, reading Sensor: temperature | fields: depth, type, qc, lon Task: Fetch level from wind_speed where value is greater than the maximum of depth in temperature for matching type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022800
train
v2
Sensor network script: Node: temperature | code: clr | fields: reading, type, unit, depth Sensor: dew_point | fields: qc, level, lat, ts Task: Get reading from temperature where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022801
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: value, level, depth, lon Sensor: air_quality | fields: ts, depth, unit, type Task: Retrieve level from snow_depth with depth above the COUNT(value) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022802
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: level, lat, value, lon Sensor: drought_index | fields: reading, lon, type, lat Task: Retrieve lon from snow_depth with value above the AVG(reading) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022803
train
v1
Sensor network script: Node: evaporation | code: gst | fields: reading, value, lon, unit Sensor: snow_depth | fields: level, lat, lon, unit Task: Retrieve reading from evaporation whose type is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022804
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: qc, lon, unit, lat Sensor: sunlight | fields: unit, lat, reading, qc Task: Retrieve lat from wind_speed with reading above the COUNT(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022805
train
v1
Sensor network script: Node: rainfall | code: hub | fields: value, ts, depth, reading Sensor: turbidity | fields: qc, reading, unit, ts Task: Retrieve lon from rainfall whose ts is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022806
train
v1
Sensor network script: Node: evaporation | code: thr | fields: level, type, depth, reading Sensor: lightning | fields: depth, reading, type, value Task: Get depth from evaporation where ts appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022807
train
v3
Sensor network script: Node: rainfall | code: gst | fields: qc, value, lat, depth Sensor: sunlight | fields: reading, qc, value, type Task: Retrieve lon from rainfall with value above the MAX(value) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022808
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, level, type, qc Sensor: temperature | fields: depth, type, value, lon Task: Get reading from soil_moisture where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022809
train
v3
Sensor network script: Node: air_quality | code: thr | fields: lat, level, qc, value Sensor: wind_speed | fields: ts, value, type, lat Task: Retrieve depth from air_quality with reading above the AVG(value) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022810
train
v2
Sensor network script: Node: dew_point | code: clr | fields: qc, level, lat, type Sensor: rainfall | fields: type, unit, value, ts Task: Fetch lat from dew_point that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022811
train
v1
Sensor network script: Node: humidity | code: hub | fields: depth, level, qc, reading Sensor: soil_moisture | fields: ts, value, type, lon Task: Fetch value from humidity where type exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022812
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: qc, unit, ts, level Sensor: evaporation | fields: type, value, qc, reading Task: Get reading from wind_speed where unit appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022813
train
v1
Sensor network script: Node: drought_index | code: thr | fields: level, lat, value, ts Sensor: uv_index | fields: qc, depth, level, unit Task: Fetch level from drought_index where qc exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022814
train
v3
Sensor network script: Node: evaporation | code: clr | fields: type, value, unit, depth Sensor: lightning | fields: lon, ts, level, lat Task: Get reading from evaporation where reading exceeds the total reading from lightning for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022815
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: level, type, qc, lat Sensor: soil_moisture | fields: qc, type, unit, level Task: Retrieve lat from wind_speed with value above the AVG(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022816
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, reading, qc, value Sensor: cloud_cover | fields: lat, lon, depth, qc Task: Fetch lat from humidity where value is greater than the count of of value in cloud_cover for matching unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022817
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: value, depth, ts, lat Sensor: snow_depth | fields: level, depth, ts, lon Task: Retrieve lon from cloud_cover that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022818
train
v1
Sensor network script: Node: pressure | code: gst | fields: lat, ts, type, unit Sensor: humidity | fields: depth, lon, level, ts Task: Fetch depth from pressure where unit exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022819
train
v3
Sensor network script: Node: rainfall | code: stn | fields: ts, lat, lon, level Sensor: cloud_cover | fields: level, lon, lat, type Task: Get depth from rainfall where value exceeds the count of value from cloud_cover for the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022820
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: reading, lat, level, lon Sensor: uv_index | fields: depth, unit, qc, level Task: Retrieve lat from soil_moisture with value above the SUM(reading) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022821
train
v1
Sensor network script: Node: drought_index | code: prt | fields: lat, level, qc, type Sensor: humidity | fields: lat, type, level, ts Task: Get lon from drought_index where qc appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022822
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: level, type, depth, reading Sensor: air_quality | fields: type, reading, qc, level Task: Retrieve value from wind_speed that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022823
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: lat, depth, value, unit Sensor: frost | fields: ts, type, value, unit Task: Get depth from soil_moisture where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022824
train
v3
Sensor network script: Node: uv_index | code: stn | fields: type, level, depth, value Sensor: drought_index | fields: ts, depth, type, lon Task: Get lat from uv_index where depth exceeds the maximum depth from drought_index for the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022825
train
v1
Sensor network script: Node: temperature | code: clr | fields: ts, value, level, lat Sensor: frost | fields: reading, unit, lon, value Task: Retrieve level from temperature whose type is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022826
train
v2
Sensor network script: Node: lightning | code: clr | fields: type, reading, value, level Sensor: cloud_cover | fields: ts, type, reading, unit Task: Retrieve reading from lightning that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022827
train
v3
Sensor network script: Node: evaporation | code: ref | fields: level, reading, unit, qc Sensor: turbidity | fields: value, type, ts, lon Task: Fetch depth from evaporation where value is greater than the maximum of value in turbidity for matching depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022828
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: qc, lon, level, reading Sensor: cloud_cover | fields: depth, value, lat, lon Task: Get lat from snow_depth where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022829
train
v3
Sensor network script: Node: visibility | code: prt | fields: type, ts, level, unit Sensor: lightning | fields: qc, lat, ts, depth Task: Get reading from visibility where value exceeds the total reading from lightning for the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022830
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: unit, value, depth, lat Sensor: lightning | fields: depth, type, reading, value Task: Get value from snow_depth where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022831
train
v1
Sensor network script: Node: pressure | code: ref | fields: level, lon, ts, reading Sensor: sunlight | fields: level, reading, unit, lon Task: Retrieve depth from pressure whose type is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022832
train
v2
Sensor network script: Node: pressure | code: ref | fields: value, lon, reading, lat Sensor: dew_point | fields: unit, qc, reading, lon Task: Get lon from pressure where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022833
train
v2
Sensor network script: Node: humidity | code: ref | fields: lon, lat, unit, depth Sensor: uv_index | fields: qc, level, reading, ts Task: Fetch lon from humidity that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022834
train
v1
Sensor network script: Node: sunlight | code: prt | fields: lat, reading, ts, unit Sensor: evaporation | fields: reading, qc, lat, lon Task: Get reading from sunlight where depth appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022835
train
v3
Sensor network script: Node: rainfall | code: ref | fields: unit, ts, lat, value Sensor: dew_point | fields: value, reading, lat, depth Task: Get lat from rainfall where value exceeds the maximum depth from dew_point for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022836
train
v2
Sensor network script: Node: frost | code: mst | fields: unit, level, type, depth Sensor: soil_moisture | fields: reading, ts, unit, type Task: Retrieve lon from frost that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022837
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: ts, value, level, lon Sensor: visibility | fields: depth, type, value, lat Task: Get lat from wind_speed where value exceeds the average depth from visibility for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022838
train
v2
Sensor network script: Node: evaporation | code: gst | fields: unit, reading, lat, depth Sensor: drought_index | fields: depth, lon, ts, qc Task: Get reading from evaporation where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022839
train
v3
Sensor network script: Node: lightning | code: clr | fields: reading, lat, type, depth Sensor: uv_index | fields: lon, type, unit, reading Task: Get lon from lightning where depth exceeds the average reading from uv_index for the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022840
train
v1
Sensor network script: Node: pressure | code: hub | fields: reading, type, lat, ts Sensor: sunlight | fields: type, value, lon, qc Task: Retrieve value from pressure whose type is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022841
train
v3
Sensor network script: Node: rainfall | code: hub | fields: level, type, lon, unit Sensor: wind_speed | fields: qc, lat, type, value Task: Retrieve level from rainfall with depth above the MAX(reading) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022842
train
v2
Sensor network script: Node: uv_index | code: gst | fields: reading, value, lon, lat Sensor: air_quality | fields: reading, ts, depth, level Task: Retrieve value from uv_index that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022843
train
v3
Sensor network script: Node: visibility | code: ref | fields: qc, ts, level, unit Sensor: temperature | fields: lon, reading, lat, value Task: Get depth from visibility where reading exceeds the total reading from temperature for the same depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022844
train
v1
Sensor network script: Node: humidity | code: hub | fields: type, lat, level, unit Sensor: lightning | fields: unit, qc, type, level Task: Get lat from humidity where depth appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022845
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: lat, qc, ts, type Sensor: uv_index | fields: qc, level, value, type Task: Get lat from cloud_cover where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022846
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, depth, type, reading Sensor: wind_speed | fields: qc, level, lat, unit Task: Fetch lon from drought_index where qc exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022847
train
v1
Sensor network script: Node: evaporation | code: mst | fields: unit, ts, qc, value Sensor: humidity | fields: level, type, ts, qc Task: Fetch lat from evaporation where unit exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022848
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, type, value, ts Sensor: air_quality | fields: reading, qc, type, value Task: Retrieve depth from sunlight whose ts is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022849
train
v1
Sensor network script: Node: humidity | code: ref | fields: depth, qc, value, unit Sensor: uv_index | fields: depth, unit, qc, reading Task: Retrieve level from humidity whose ts is found in uv_index records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022850
train
v2
Sensor network script: Node: drought_index | code: hub | fields: unit, value, lon, reading Sensor: soil_moisture | fields: value, level, lat, unit Task: Retrieve lon from drought_index that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022851
train
v3
Sensor network script: Node: turbidity | code: thr | fields: ts, qc, unit, depth Sensor: pressure | fields: qc, level, lon, reading Task: Retrieve value from turbidity with value above the COUNT(depth) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022852
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: unit, value, reading, level Sensor: rainfall | fields: reading, depth, unit, level Task: Get depth from cloud_cover where ts appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022853
train
v1
Sensor network script: Node: frost | code: prt | fields: ts, qc, type, unit Sensor: turbidity | fields: lat, qc, ts, lon Task: Fetch lon from frost where qc exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022854
train
v3
Sensor network script: Node: evaporation | code: hub | fields: value, level, qc, lon Sensor: snow_depth | fields: ts, lon, level, value Task: Retrieve level from evaporation with reading above the MIN(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022855
train
v3
Sensor network script: Node: pressure | code: gst | fields: type, ts, lon, level Sensor: rainfall | fields: reading, ts, unit, level Task: Retrieve reading from pressure with value above the COUNT(value) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022856
train
v1
Sensor network script: Node: lightning | code: mst | fields: ts, value, unit, lat Sensor: wind_speed | fields: unit, level, depth, ts Task: Retrieve lat from lightning whose ts is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022857
train
v1
Sensor network script: Node: temperature | code: mst | fields: reading, lat, qc, ts Sensor: cloud_cover | fields: unit, value, lon, lat Task: Fetch lat from temperature where unit exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022858
train
v2
Sensor network script: Node: dew_point | code: gst | fields: unit, type, level, lat Sensor: air_quality | fields: depth, level, unit, qc Task: Fetch lon from dew_point that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022859
train
v2
Sensor network script: Node: frost | code: prt | fields: reading, unit, type, ts Sensor: soil_moisture | fields: lon, type, reading, level Task: Get level from frost where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022860
train
v1
Sensor network script: Node: rainfall | code: gst | fields: depth, level, lon, lat Sensor: evaporation | fields: reading, qc, lat, lon Task: Fetch value from rainfall where ts exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022861
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: type, level, depth, unit Sensor: turbidity | fields: depth, type, lat, ts Task: Get level from wind_speed where reading exceeds the total reading from turbidity for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022862
train
v2
Sensor network script: Node: air_quality | code: prt | fields: depth, type, qc, lat Sensor: visibility | fields: qc, value, ts, level Task: Retrieve value from air_quality that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022863
train
v1
Sensor network script: Node: temperature | code: clr | fields: value, unit, type, depth Sensor: turbidity | fields: qc, unit, type, ts Task: Retrieve depth from temperature whose ts is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022864
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: level, lat, reading, type Sensor: dew_point | fields: reading, depth, type, unit Task: Get depth from wind_speed where unit appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022865
train
v3
Sensor network script: Node: visibility | code: thr | fields: value, ts, depth, unit Sensor: drought_index | fields: reading, qc, type, depth Task: Retrieve level from visibility with depth above the AVG(reading) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022866
train
v2
Sensor network script: Node: sunlight | code: ref | fields: ts, qc, level, value Sensor: temperature | fields: lon, qc, level, depth Task: Get level from sunlight where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022867
train
v1
Sensor network script: Node: rainfall | code: hub | fields: ts, value, level, unit Sensor: uv_index | fields: unit, level, depth, value Task: Retrieve depth from rainfall whose qc is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022868
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: type, qc, value, lat Sensor: dew_point | fields: lat, qc, lon, depth Task: Get lat from soil_moisture where reading exceeds the maximum value from dew_point for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022869
train
v1
Sensor network script: Node: drought_index | code: gst | fields: type, lat, depth, lon Sensor: evaporation | fields: value, level, qc, lon Task: Retrieve lat from drought_index whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022870
train
v3
Sensor network script: Node: lightning | code: stn | fields: value, unit, qc, depth Sensor: pressure | fields: value, ts, lat, depth Task: Get value from lightning where depth exceeds the maximum value from pressure for the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022871
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, depth, level, unit Sensor: wind_speed | fields: qc, value, unit, ts Task: Retrieve depth from soil_moisture whose qc is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022872
train
v1
Sensor network script: Node: pressure | code: stn | fields: value, depth, unit, reading Sensor: wind_speed | fields: ts, lat, value, reading Task: Get depth from pressure where depth appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022873
train
v3
Sensor network script: Node: sunlight | code: prt | fields: unit, value, level, reading Sensor: humidity | fields: qc, ts, depth, type Task: Retrieve depth from sunlight with reading above the MIN(reading) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022874
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: qc, depth, unit, ts Sensor: dew_point | fields: qc, level, lat, depth Task: Get depth from snow_depth where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022875
train
v3
Sensor network script: Node: frost | code: gst | fields: lat, type, level, unit Sensor: evaporation | fields: lat, value, qc, reading Task: Get depth from frost where value exceeds the minimum depth from evaporation for the same depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022876
train
v2
Sensor network script: Node: rainfall | code: ref | fields: depth, lon, type, reading Sensor: cloud_cover | fields: type, depth, ts, unit Task: Get lat from rainfall where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022877
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lat, ts, qc, level Sensor: lightning | fields: reading, level, qc, lat Task: Fetch reading from snow_depth that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022878
train
v2
Sensor network script: Node: uv_index | code: ref | fields: lon, qc, level, lat Sensor: pressure | fields: unit, reading, level, depth Task: Retrieve value from uv_index that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022879
train
v1
Sensor network script: Node: humidity | code: stn | fields: type, unit, qc, level Sensor: rainfall | fields: ts, type, lat, value Task: Get value from humidity where type appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022880
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: ts, qc, depth, lat Sensor: temperature | fields: value, lon, qc, level Task: Retrieve value from cloud_cover that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022881
train
v2
Sensor network script: Node: air_quality | code: ref | fields: level, ts, type, value Sensor: temperature | fields: value, type, ts, depth Task: Get lon from air_quality where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022882
train
v3
Sensor network script: Node: uv_index | code: ref | fields: level, ts, reading, lat Sensor: pressure | fields: lon, qc, unit, level Task: Get lat from uv_index where value exceeds the count of reading from pressure for the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022883
train
v2
Sensor network script: Node: drought_index | code: prt | fields: ts, reading, depth, qc Sensor: pressure | fields: unit, ts, qc, level Task: Retrieve depth from drought_index that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022884
train
v2
Sensor network script: Node: humidity | code: prt | fields: unit, ts, value, qc Sensor: drought_index | fields: unit, value, depth, ts Task: Fetch lon 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="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022885
train
v1
Sensor network script: Node: visibility | code: mst | fields: qc, type, depth, lat Sensor: snow_depth | fields: level, reading, lat, ts Task: Retrieve lon from visibility whose depth is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022886
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: type, level, lat, qc Sensor: rainfall | fields: qc, value, level, depth Task: Retrieve level from cloud_cover with value above the MAX(depth) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022887
train
v3
Sensor network script: Node: humidity | code: clr | fields: type, unit, reading, lon Sensor: lightning | fields: value, unit, depth, ts Task: Fetch lon from humidity where reading is greater than the average of depth in lightning for matching ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "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_022888
train
v3
Sensor network script: Node: temperature | code: mst | fields: depth, type, ts, value Sensor: cloud_cover | fields: ts, unit, type, qc Task: Get lon from temperature where value exceeds the minimum depth from cloud_cover for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022889
train
v3
Sensor network script: Node: dew_point | code: thr | fields: level, value, lat, qc Sensor: rainfall | fields: value, type, ts, reading Task: Retrieve depth from dew_point with reading above the SUM(value) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022890
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: type, value, reading, ts Sensor: air_quality | fields: level, reading, lon, type Task: Fetch lon from cloud_cover where depth is greater than the minimum of depth in air_quality for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022891
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: lat, depth, unit, reading Sensor: snow_depth | fields: unit, level, lat, reading Task: Get level from wind_speed where type appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022892
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: unit, qc, value, depth Sensor: cloud_cover | fields: lon, lat, qc, level Task: Fetch value from soil_moisture where ts exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022893
train
v1
Sensor network script: Node: turbidity | code: gst | fields: reading, qc, depth, unit Sensor: visibility | fields: ts, type, reading, lat Task: Retrieve level from turbidity whose unit is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022894
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, lat, reading, ts Sensor: drought_index | fields: qc, depth, type, ts Task: Get depth from evaporation where type appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022895
train
v2
Sensor network script: Node: lightning | code: ref | fields: ts, qc, level, lat Sensor: dew_point | fields: lon, level, type, ts Task: Fetch lat from lightning that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022896
train
v3
Sensor network script: Node: lightning | code: clr | fields: depth, ts, level, qc Sensor: air_quality | fields: lat, reading, depth, type Task: Fetch reading from lightning where value is greater than the count of of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_022897
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: qc, ts, lon, value Sensor: evaporation | fields: lat, level, value, ts Task: Fetch level from snow_depth where depth exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022898
train
v3
Sensor network script: Node: frost | code: hub | fields: reading, lat, depth, level Sensor: evaporation | fields: reading, value, lon, lat Task: Retrieve reading from frost with reading above the AVG(value) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_022899
train