variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: snow_depth | code: mst | fields: level, reading, lon, value Sensor: air_quality | fields: depth, unit, lat, level Task: Retrieve level from snow_depth that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007800
train
v3
Sensor network script: Node: drought_index | code: clr | fields: ts, value, lon, qc Sensor: dew_point | fields: value, ts, lon, depth Task: Get lat from drought_index where reading exceeds the total reading from dew_point for the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "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_007801
train
v3
Sensor network script: Node: turbidity | code: stn | fields: unit, value, qc, reading Sensor: frost | fields: unit, lat, ts, lon Task: Get reading from turbidity where value exceeds the maximum depth from frost for the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007802
train
v3
Sensor network script: Node: drought_index | code: mst | fields: qc, value, reading, ts Sensor: humidity | fields: qc, value, ts, type Task: Retrieve level from drought_index with value above the AVG(depth) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007803
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: lon, reading, depth, lat Sensor: lightning | fields: value, lon, lat, ts Task: Fetch level from cloud_cover where depth is greater than the minimum of value in lightning for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007804
train
v2
Sensor network script: Node: lightning | code: thr | fields: level, qc, ts, depth Sensor: cloud_cover | fields: lon, ts, qc, reading Task: Get lat from lightning where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007805
train
v1
Sensor network script: Node: rainfall | code: ref | fields: ts, lat, depth, value Sensor: humidity | fields: value, type, unit, lat Task: Fetch lon from rainfall where unit exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007806
train
v3
Sensor network script: Node: rainfall | code: clr | fields: value, lon, depth, level Sensor: snow_depth | fields: level, reading, qc, type Task: Get value from rainfall where reading exceeds the count of depth from snow_depth for the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007807
train
v3
Sensor network script: Node: dew_point | code: gst | fields: level, lon, unit, lat Sensor: sunlight | fields: lat, type, value, level Task: Get depth from dew_point where depth exceeds the minimum value from sunlight for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007808
train
v3
Sensor network script: Node: uv_index | code: mst | fields: unit, lat, lon, qc Sensor: rainfall | fields: lat, depth, value, lon Task: Get level from uv_index where value exceeds the minimum value from rainfall for the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007809
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: lon, qc, value, ts Sensor: humidity | fields: level, reading, depth, qc Task: Fetch lat from cloud_cover where unit exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007810
train
v2
Sensor network script: Node: visibility | code: gst | fields: type, reading, depth, ts Sensor: turbidity | fields: reading, ts, qc, lon Task: Fetch lat from visibility that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007811
train
v3
Sensor network script: Node: uv_index | code: mst | fields: reading, qc, level, lat Sensor: drought_index | fields: qc, level, depth, value Task: Fetch reading from uv_index where value is greater than the count of of depth in drought_index for matching unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007812
train
v2
Sensor network script: Node: pressure | code: thr | fields: lat, level, reading, unit Sensor: evaporation | fields: value, lat, qc, ts Task: Fetch depth from pressure that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007813
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: unit, depth, level, reading Sensor: uv_index | fields: depth, value, lon, unit Task: Fetch reading from snow_depth where depth exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007814
train
v3
Sensor network script: Node: rainfall | code: stn | fields: type, ts, unit, reading Sensor: visibility | fields: unit, type, value, reading Task: Retrieve reading from rainfall with value above the MAX(value) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007815
train
v2
Sensor network script: Node: lightning | code: thr | fields: reading, unit, lat, qc Sensor: sunlight | fields: reading, value, depth, ts Task: Retrieve value from lightning that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007816
train
v1
Sensor network script: Node: evaporation | code: thr | fields: reading, ts, value, type Sensor: air_quality | fields: unit, qc, ts, depth Task: Retrieve lat from evaporation whose qc is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007817
train
v3
Sensor network script: Node: evaporation | code: mst | fields: value, qc, level, lon Sensor: soil_moisture | fields: lat, lon, depth, value Task: Fetch lon from evaporation where depth is greater than the average of value in soil_moisture for matching ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007818
train
v3
Sensor network script: Node: uv_index | code: stn | fields: depth, unit, qc, type Sensor: evaporation | fields: lat, lon, type, reading Task: Fetch depth from uv_index where value is greater than the average of depth in evaporation for matching ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007819
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: lon, ts, unit, level Sensor: turbidity | fields: ts, level, lat, depth Task: Retrieve depth from soil_moisture that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007820
train
v3
Sensor network script: Node: frost | code: hub | fields: qc, depth, level, type Sensor: evaporation | fields: unit, value, ts, reading Task: Get depth from frost where depth exceeds the total value from evaporation for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007821
train
v1
Sensor network script: Node: lightning | code: thr | fields: value, lat, qc, ts Sensor: evaporation | fields: unit, lon, reading, level Task: Fetch lon from lightning where unit exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007822
train
v2
Sensor network script: Node: dew_point | code: stn | fields: value, qc, type, reading Sensor: soil_moisture | fields: reading, qc, lat, depth Task: Retrieve value from dew_point that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007823
train
v1
Sensor network script: Node: lightning | code: thr | fields: lat, reading, depth, value Sensor: rainfall | fields: reading, level, value, depth Task: Fetch level from lightning where unit exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007824
train
v3
Sensor network script: Node: air_quality | code: hub | fields: lat, level, depth, value Sensor: sunlight | fields: value, ts, lat, lon Task: Fetch lon from air_quality where value is greater than the minimum of depth in sunlight for matching unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007825
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: ts, lat, qc, lon Sensor: temperature | fields: level, depth, lat, value Task: Retrieve depth from wind_speed whose ts is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007826
train
v1
Sensor network script: Node: air_quality | code: thr | fields: value, qc, ts, type Sensor: soil_moisture | fields: value, unit, lat, depth Task: Get value from air_quality where depth appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007827
train
v2
Sensor network script: Node: evaporation | code: stn | fields: type, ts, lon, qc Sensor: lightning | fields: reading, level, depth, unit Task: Retrieve lon from evaporation that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007828
train
v2
Sensor network script: Node: humidity | code: stn | fields: reading, qc, ts, level Sensor: uv_index | fields: type, lon, value, qc Task: Retrieve lon from humidity that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007829
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: qc, unit, level, reading Sensor: visibility | fields: reading, value, lat, level Task: Retrieve level from cloud_cover whose unit is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "cloud_cover", "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_007830
train
v2
Sensor network script: Node: evaporation | code: stn | fields: level, depth, value, lon Sensor: frost | fields: value, depth, reading, level Task: Get value from evaporation where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007831
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: depth, lat, ts, qc Sensor: frost | fields: lon, qc, lat, reading Task: Fetch reading from snow_depth where reading is greater than the minimum of depth in frost for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007832
train
v3
Sensor network script: Node: uv_index | code: hub | fields: qc, ts, reading, unit Sensor: visibility | fields: type, lat, reading, value Task: Retrieve value from uv_index with depth above the SUM(value) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007833
train
v2
Sensor network script: Node: sunlight | code: stn | fields: reading, value, lon, ts Sensor: cloud_cover | fields: depth, unit, level, lon Task: Retrieve value from sunlight that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007834
train
v3
Sensor network script: Node: lightning | code: prt | fields: reading, type, lat, ts Sensor: pressure | fields: ts, type, unit, depth Task: Retrieve level from lightning with reading above the MAX(value) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007835
train
v2
Sensor network script: Node: sunlight | code: mst | fields: lat, qc, lon, reading Sensor: air_quality | fields: ts, depth, lon, lat Task: Retrieve level from sunlight that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007836
train
v3
Sensor network script: Node: pressure | code: hub | fields: level, value, depth, ts Sensor: rainfall | fields: depth, level, ts, qc Task: Retrieve lat from pressure with depth above the SUM(depth) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007837
train
v3
Sensor network script: Node: visibility | code: hub | fields: level, lon, unit, value Sensor: lightning | fields: value, ts, level, lat Task: Get lon from visibility where depth exceeds the average reading from lightning for the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007838
train
v1
Sensor network script: Node: pressure | code: prt | fields: qc, reading, lon, depth Sensor: dew_point | fields: ts, reading, unit, depth Task: Fetch lat from pressure where ts exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007839
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lon, value, unit, type Sensor: snow_depth | fields: value, type, depth, lat Task: Fetch value from uv_index that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007840
train
v3
Sensor network script: Node: temperature | code: clr | fields: reading, ts, qc, unit Sensor: lightning | fields: lon, type, ts, level Task: Retrieve lon from temperature with depth above the COUNT(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007841
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: qc, level, lon, depth Sensor: frost | fields: unit, reading, level, value Task: Get lon from soil_moisture where reading exceeds the average depth from frost for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007842
train
v3
Sensor network script: Node: turbidity | code: hub | fields: ts, lon, qc, depth Sensor: visibility | fields: qc, value, type, level Task: Retrieve lon from turbidity with value above the SUM(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007843
train
v3
Sensor network script: Node: visibility | code: prt | fields: level, lon, type, reading Sensor: cloud_cover | fields: type, qc, value, unit Task: Fetch value from visibility where value is greater than the count of of reading in cloud_cover for matching depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007844
train
v1
Sensor network script: Node: dew_point | code: stn | fields: qc, value, level, unit Sensor: cloud_cover | fields: unit, ts, lat, reading Task: Retrieve reading from dew_point whose unit is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007845
train
v3
Sensor network script: Node: visibility | code: ref | fields: lat, lon, qc, level Sensor: snow_depth | fields: unit, reading, value, level Task: Get reading from visibility where depth exceeds the average reading from snow_depth for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007846
train
v3
Sensor network script: Node: lightning | code: clr | fields: unit, lon, reading, value Sensor: soil_moisture | fields: lon, qc, unit, depth Task: Get depth from lightning where depth exceeds the minimum reading from soil_moisture for the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007847
train
v3
Sensor network script: Node: lightning | code: hub | fields: depth, lon, qc, level Sensor: frost | fields: reading, lat, value, lon Task: Fetch lon from lightning where reading is greater than the maximum of depth in frost for matching depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007848
train
v1
Sensor network script: Node: visibility | code: prt | fields: reading, depth, level, lat Sensor: pressure | fields: level, reading, unit, lon Task: Get value from visibility where depth appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007849
train
v1
Sensor network script: Node: humidity | code: clr | fields: type, ts, lat, qc Sensor: rainfall | fields: value, level, unit, lon Task: Retrieve reading from humidity whose qc is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007850
train
v1
Sensor network script: Node: evaporation | code: clr | fields: depth, qc, unit, level Sensor: temperature | fields: unit, depth, lat, qc Task: Retrieve value from evaporation whose unit is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007851
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: unit, level, type, qc Sensor: frost | fields: unit, reading, depth, lon Task: Get lon from snow_depth where depth exceeds the average value from frost for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007852
train
v2
Sensor network script: Node: lightning | code: mst | fields: lon, type, depth, qc Sensor: evaporation | fields: type, unit, value, lat Task: Retrieve depth from lightning that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007853
train
v2
Sensor network script: Node: air_quality | code: ref | fields: reading, level, value, depth Sensor: soil_moisture | fields: reading, qc, depth, lat Task: Retrieve level from air_quality that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007854
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: unit, ts, lon, value Sensor: evaporation | fields: level, unit, ts, lat Task: Retrieve value from cloud_cover whose depth is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007855
train
v2
Sensor network script: Node: turbidity | code: ref | fields: level, reading, value, depth Sensor: drought_index | fields: lat, type, depth, value Task: Fetch lon from turbidity that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007856
train
v2
Sensor network script: Node: lightning | code: mst | fields: value, qc, unit, lon Sensor: wind_speed | fields: reading, depth, type, unit Task: Get value from lightning where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007857
train
v3
Sensor network script: Node: temperature | code: mst | fields: level, ts, unit, value Sensor: frost | fields: lon, unit, level, reading Task: Get reading from temperature where depth exceeds the average reading from frost for the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007858
train
v3
Sensor network script: Node: dew_point | code: hub | fields: unit, depth, qc, ts Sensor: lightning | fields: qc, level, value, unit Task: Retrieve reading from dew_point with reading above the SUM(reading) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007859
train
v2
Sensor network script: Node: temperature | code: thr | fields: lat, lon, type, qc Sensor: frost | fields: value, lat, unit, depth Task: Retrieve lon from temperature that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007860
train
v1
Sensor network script: Node: evaporation | code: thr | fields: lon, lat, type, depth Sensor: snow_depth | fields: lon, unit, qc, level Task: Get depth from evaporation where qc appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007861
train
v1
Sensor network script: Node: sunlight | code: gst | fields: ts, lon, lat, type Sensor: soil_moisture | fields: reading, level, type, depth Task: Get lat from sunlight where qc appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007862
train
v2
Sensor network script: Node: turbidity | code: clr | fields: lat, type, reading, unit Sensor: lightning | fields: lat, type, reading, ts Task: Fetch lat from turbidity that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007863
train
v1
Sensor network script: Node: uv_index | code: prt | fields: unit, qc, reading, level Sensor: temperature | fields: type, lat, unit, reading Task: Retrieve depth from uv_index whose unit is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007864
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: unit, reading, ts, level Sensor: frost | fields: qc, level, lon, lat Task: Retrieve lon from wind_speed that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007865
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, value, qc, level Sensor: temperature | fields: unit, level, qc, type Task: Get reading from visibility where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007866
train
v2
Sensor network script: Node: lightning | code: prt | fields: ts, qc, lon, reading Sensor: drought_index | fields: lat, level, depth, lon Task: Get value from lightning where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007867
train
v2
Sensor network script: Node: temperature | code: ref | fields: depth, lon, lat, value Sensor: rainfall | fields: level, lon, unit, lat Task: Retrieve value from temperature that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007868
train
v2
Sensor network script: Node: sunlight | code: mst | fields: level, type, reading, value Sensor: snow_depth | fields: value, ts, lat, type Task: Retrieve lon from sunlight that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007869
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: level, ts, lat, qc Sensor: dew_point | fields: value, unit, lon, lat Task: Retrieve lat from snow_depth whose depth is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007870
train
v1
Sensor network script: Node: frost | code: prt | fields: lat, reading, ts, lon Sensor: rainfall | fields: lat, depth, unit, value Task: Get level from frost where depth appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007871
train
v1
Sensor network script: Node: visibility | code: clr | fields: type, value, reading, ts Sensor: temperature | fields: reading, ts, unit, qc Task: Fetch depth from visibility where type exists in temperature sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007872
train
v2
Sensor network script: Node: evaporation | code: stn | fields: value, type, qc, unit Sensor: air_quality | fields: depth, value, lon, qc Task: Retrieve value from evaporation that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007873
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: depth, lon, value, lat Sensor: soil_moisture | fields: lat, qc, level, reading Task: Fetch level from snow_depth where qc exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007874
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: lon, value, reading, qc Sensor: humidity | fields: ts, lon, level, value Task: Retrieve lat from snow_depth with reading above the MIN(value) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007875
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lon, unit, value, depth Sensor: cloud_cover | fields: unit, depth, ts, reading Task: Fetch depth from drought_index that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007876
train
v3
Sensor network script: Node: humidity | code: gst | fields: depth, value, reading, lat Sensor: drought_index | fields: level, value, qc, type Task: Retrieve depth from humidity with value above the COUNT(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007877
train
v1
Sensor network script: Node: frost | code: ref | fields: qc, depth, level, lon Sensor: rainfall | fields: value, type, qc, unit Task: Retrieve reading from frost whose depth is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007878
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: unit, value, qc, depth Sensor: temperature | fields: depth, ts, level, type Task: Retrieve value from cloud_cover whose ts is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007879
train
v1
Sensor network script: Node: drought_index | code: mst | fields: unit, value, lon, reading Sensor: evaporation | fields: reading, lat, ts, unit Task: Fetch reading from drought_index where depth exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007880
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: value, depth, level, type Sensor: uv_index | fields: depth, qc, type, level Task: Get lon from wind_speed where depth appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007881
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: ts, depth, unit, value Sensor: dew_point | fields: reading, lon, ts, lat Task: Get level from soil_moisture where depth exceeds the count of depth from dew_point for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007882
train
v3
Sensor network script: Node: humidity | code: stn | fields: reading, lat, value, qc Sensor: dew_point | fields: lat, type, level, unit Task: Fetch reading from humidity where value is greater than the total of depth in dew_point for matching qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007883
train
v3
Sensor network script: Node: evaporation | code: gst | fields: type, value, unit, depth Sensor: dew_point | fields: qc, lat, reading, type Task: Get reading from evaporation where value exceeds the average reading from dew_point for the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007884
train
v3
Sensor network script: Node: turbidity | code: mst | fields: value, level, reading, qc Sensor: soil_moisture | fields: unit, ts, type, level Task: Retrieve lon from turbidity with reading above the AVG(reading) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007885
train
v3
Sensor network script: Node: drought_index | code: mst | fields: ts, qc, type, depth Sensor: uv_index | fields: type, ts, depth, reading Task: Get lon from drought_index where depth exceeds the average reading from uv_index for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007886
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: type, qc, reading, unit Sensor: snow_depth | fields: level, lat, reading, depth Task: Fetch depth from soil_moisture where value is greater than the minimum of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007887
train
v1
Sensor network script: Node: visibility | code: ref | fields: qc, ts, unit, level Sensor: soil_moisture | fields: reading, unit, lat, qc Task: Retrieve depth from visibility whose qc is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007888
train
v1
Sensor network script: Node: sunlight | code: ref | fields: depth, lat, unit, value Sensor: air_quality | fields: depth, level, type, lon Task: Fetch level from sunlight where unit exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007889
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: unit, lat, level, depth Sensor: soil_moisture | fields: unit, lat, lon, level Task: Fetch level from snow_depth where qc exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007890
train
v3
Sensor network script: Node: evaporation | code: mst | fields: ts, value, level, depth Sensor: temperature | fields: qc, type, lon, level Task: Get lon from evaporation where depth exceeds the total value from temperature for the same depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007891
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: lon, depth, ts, level Sensor: soil_moisture | fields: level, lon, reading, depth Task: Get depth from snow_depth where reading exceeds the total depth from soil_moisture for the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007892
train
v1
Sensor network script: Node: sunlight | code: prt | fields: depth, unit, level, value Sensor: drought_index | fields: value, ts, depth, lon Task: Fetch reading from sunlight where unit exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007893
train
v2
Sensor network script: Node: humidity | code: mst | fields: depth, unit, lon, qc Sensor: cloud_cover | fields: ts, reading, depth, type Task: Retrieve lat from humidity that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007894
train
v2
Sensor network script: Node: evaporation | code: stn | fields: type, reading, lat, ts Sensor: drought_index | fields: level, reading, value, ts Task: Retrieve value from evaporation that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007895
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: reading, ts, level, lat Sensor: uv_index | fields: reading, lon, depth, unit Task: Fetch value from cloud_cover where reading is greater than the average of value in uv_index for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007896
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: ts, qc, lon, depth Sensor: sunlight | fields: reading, type, depth, qc Task: Fetch value from cloud_cover where qc exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007897
train
v3
Sensor network script: Node: turbidity | code: stn | fields: lat, level, type, depth Sensor: dew_point | fields: depth, type, unit, lon Task: Fetch depth from turbidity where depth is greater than the count of of depth in dew_point for matching depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007898
train
v1
Sensor network script: Node: sunlight | code: stn | fields: lat, unit, reading, value Sensor: turbidity | fields: qc, unit, depth, lon Task: Retrieve level from sunlight whose type is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007899
train