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: humidity | code: prt | fields: lon, level, lat, type Sensor: frost | fields: lat, lon, reading, depth Task: Retrieve lat from humidity with value above the MAX(value) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082800
train
v3
Sensor network script: Node: sunlight | code: mst | fields: reading, value, depth, type Sensor: dew_point | fields: depth, value, qc, unit Task: Fetch level from sunlight where depth is greater than the count of of value in dew_point for matching qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082801
train
v2
Sensor network script: Node: frost | code: prt | fields: value, depth, type, ts Sensor: evaporation | fields: qc, unit, value, ts Task: Retrieve lat from frost that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082802
train
v1
Sensor network script: Node: evaporation | code: ref | fields: value, depth, qc, ts Sensor: soil_moisture | fields: qc, reading, lat, depth Task: Get lon from evaporation where unit appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082803
train
v3
Sensor network script: Node: lightning | code: gst | fields: unit, value, lat, depth Sensor: uv_index | fields: reading, value, lon, ts Task: Get value from lightning where value exceeds the maximum reading from uv_index for the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082804
train
v2
Sensor network script: Node: temperature | code: clr | fields: level, value, type, ts Sensor: air_quality | fields: type, value, lat, ts Task: Retrieve level from temperature that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082805
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: qc, lon, value, lat Sensor: temperature | fields: lon, qc, reading, type Task: Fetch lat from soil_moisture where reading is greater than the minimum of reading in temperature for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082806
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: lon, level, value, lat Sensor: visibility | fields: lon, reading, level, qc Task: Get level from wind_speed where depth exceeds the minimum value from visibility for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082807
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: value, reading, ts, unit Sensor: wind_speed | fields: lat, value, depth, type Task: Fetch reading from soil_moisture where value is greater than the maximum of reading in wind_speed for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082808
train
v1
Sensor network script: Node: frost | code: mst | fields: lat, type, value, reading Sensor: dew_point | fields: reading, ts, depth, lat Task: Get level from frost where depth appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082809
train
v3
Sensor network script: Node: evaporation | code: gst | fields: qc, ts, level, lat Sensor: lightning | fields: depth, lon, ts, type Task: Get level from evaporation where depth exceeds the minimum reading from lightning for the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082810
train
v1
Sensor network script: Node: humidity | code: mst | fields: lon, level, ts, qc Sensor: rainfall | fields: type, lat, value, unit Task: Get lat from humidity where qc appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082811
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: reading, ts, lon, value Sensor: humidity | fields: lon, reading, ts, unit Task: Retrieve lon from snow_depth whose unit is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082812
train
v1
Sensor network script: Node: drought_index | code: hub | fields: depth, type, unit, lon Sensor: temperature | fields: ts, lat, unit, type Task: Fetch depth from drought_index where ts exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082813
train
v3
Sensor network script: Node: sunlight | code: thr | fields: lat, reading, value, lon Sensor: cloud_cover | fields: level, qc, reading, lat Task: Get reading from sunlight where reading exceeds the average value from cloud_cover for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082814
train
v2
Sensor network script: Node: dew_point | code: prt | fields: level, value, lon, unit Sensor: cloud_cover | fields: ts, reading, lon, level Task: Get level from dew_point where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082815
train
v2
Sensor network script: Node: temperature | code: stn | fields: lon, lat, depth, value Sensor: pressure | fields: ts, depth, type, value Task: Get lon from temperature where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082816
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, type, unit, ts Sensor: sunlight | fields: qc, level, depth, reading Task: Fetch lat from snow_depth that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082817
train
v1
Sensor network script: Node: drought_index | code: gst | fields: value, unit, ts, lon Sensor: humidity | fields: depth, lon, qc, level Task: Fetch level from drought_index where depth exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082818
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lon, ts, type, level Sensor: turbidity | fields: value, depth, reading, level Task: Retrieve reading from uv_index with reading above the SUM(value) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082819
train
v2
Sensor network script: Node: uv_index | code: hub | fields: type, level, lat, reading Sensor: sunlight | fields: depth, reading, lon, value Task: Retrieve level from uv_index that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082820
train
v1
Sensor network script: Node: air_quality | code: thr | fields: lon, ts, reading, level Sensor: turbidity | fields: type, value, depth, ts Task: Get lon from air_quality where type appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082821
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: unit, lat, depth, ts Sensor: temperature | fields: ts, lon, level, qc Task: Fetch lat from soil_moisture where depth is greater than the maximum of value in temperature for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082822
train
v2
Sensor network script: Node: rainfall | code: thr | fields: type, value, qc, reading Sensor: lightning | fields: level, lon, unit, lat Task: Get value from rainfall where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082823
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lon, qc, level, lat Sensor: turbidity | fields: ts, lat, depth, unit Task: Fetch value from soil_moisture where qc exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082824
train
v2
Sensor network script: Node: evaporation | code: thr | fields: unit, qc, level, lat Sensor: turbidity | fields: ts, value, lon, level Task: Get reading from evaporation where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082825
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: unit, reading, lat, ts Sensor: lightning | fields: depth, ts, lat, lon Task: Get value from snow_depth where reading exceeds the minimum reading from lightning for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082826
train
v1
Sensor network script: Node: rainfall | code: hub | fields: depth, lat, ts, reading Sensor: frost | fields: value, level, depth, qc Task: Retrieve lat from rainfall whose ts is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082827
train
v2
Sensor network script: Node: dew_point | code: clr | fields: reading, value, ts, unit Sensor: soil_moisture | fields: unit, lat, reading, type Task: Fetch lon from dew_point that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082828
train
v1
Sensor network script: Node: sunlight | code: thr | fields: unit, level, ts, lat Sensor: drought_index | fields: ts, level, qc, lat Task: Retrieve lon from sunlight whose qc is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082829
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: level, depth, qc, reading Sensor: sunlight | fields: lon, reading, lat, depth Task: Get lon from soil_moisture where depth exceeds the average value from sunlight for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082830
train
v1
Sensor network script: Node: uv_index | code: thr | fields: depth, ts, lon, type Sensor: visibility | fields: unit, ts, type, depth Task: Retrieve reading from uv_index whose unit is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082831
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: ts, value, lat, unit Sensor: evaporation | fields: type, qc, lat, level Task: Retrieve value from wind_speed whose qc is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082832
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: type, reading, ts, depth Sensor: lightning | fields: qc, ts, unit, lat Task: Retrieve lon from cloud_cover that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082833
train
v3
Sensor network script: Node: evaporation | code: prt | fields: type, ts, qc, reading Sensor: cloud_cover | fields: unit, value, reading, lon Task: Fetch value from evaporation where depth is greater than the total of depth in cloud_cover for matching ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082834
train
v1
Sensor network script: Node: humidity | code: stn | fields: type, value, unit, depth Sensor: visibility | fields: lat, qc, reading, ts Task: Get value from humidity where depth appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082835
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: value, type, ts, unit Sensor: soil_moisture | fields: depth, ts, value, reading Task: Retrieve level from snow_depth whose type is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082836
train
v2
Sensor network script: Node: visibility | code: clr | fields: depth, reading, lat, qc Sensor: snow_depth | fields: ts, qc, unit, value Task: Fetch level from visibility that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082837
train
v2
Sensor network script: Node: sunlight | code: mst | fields: qc, type, ts, unit Sensor: rainfall | fields: ts, lon, type, qc Task: Get lon from sunlight where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082838
train
v3
Sensor network script: Node: pressure | code: gst | fields: depth, lat, type, value Sensor: humidity | fields: depth, qc, type, lat Task: Retrieve value from pressure with depth above the SUM(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082839
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lon, level, unit, qc Sensor: uv_index | fields: reading, level, lon, qc Task: Retrieve depth from soil_moisture whose unit is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082840
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: level, value, lon, reading Sensor: drought_index | fields: lat, ts, depth, level Task: Fetch lat from snow_depth where ts exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082841
train
v3
Sensor network script: Node: humidity | code: thr | fields: type, unit, qc, lon Sensor: air_quality | fields: ts, lon, depth, qc Task: Fetch level from humidity where value is greater than the maximum of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082842
train
v3
Sensor network script: Node: air_quality | code: mst | fields: depth, ts, lat, unit Sensor: cloud_cover | fields: depth, value, type, lon Task: Get lon from air_quality where value exceeds the maximum reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082843
train
v3
Sensor network script: Node: frost | code: mst | fields: ts, level, qc, reading Sensor: pressure | fields: reading, unit, type, lat Task: Fetch level from frost where depth is greater than the minimum of value in pressure for matching depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082844
train
v3
Sensor network script: Node: pressure | code: stn | fields: depth, lat, type, unit Sensor: drought_index | fields: value, lon, reading, depth Task: Retrieve depth from pressure with reading above the SUM(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082845
train
v3
Sensor network script: Node: humidity | code: hub | fields: depth, level, unit, type Sensor: turbidity | fields: reading, value, ts, type Task: Fetch lat from humidity where value is greater than the total of reading in turbidity for matching qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082846
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: reading, level, unit, ts Sensor: wind_speed | fields: qc, depth, value, level Task: Retrieve depth from soil_moisture that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082847
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: level, lon, value, unit Sensor: dew_point | fields: reading, unit, value, type Task: Fetch level from cloud_cover where value is greater than the minimum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082848
train
v3
Sensor network script: Node: dew_point | code: thr | fields: unit, value, reading, lon Sensor: cloud_cover | fields: lon, type, qc, reading Task: Retrieve depth from dew_point with depth above the COUNT(depth) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082849
train
v2
Sensor network script: Node: rainfall | code: thr | fields: reading, unit, value, ts Sensor: dew_point | fields: reading, ts, unit, value Task: Get level from rainfall where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082850
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lon, lat, value, level Sensor: visibility | fields: lat, value, level, reading Task: Retrieve lat from wind_speed that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082851
train
v1
Sensor network script: Node: turbidity | code: ref | fields: depth, unit, ts, lon Sensor: cloud_cover | fields: type, value, lat, lon Task: Fetch value from turbidity where depth exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082852
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: level, unit, lon, depth Sensor: lightning | fields: lat, depth, lon, value Task: Get reading from snow_depth where depth exceeds the average reading from lightning for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082853
train
v3
Sensor network script: Node: air_quality | code: thr | fields: type, depth, level, unit Sensor: lightning | fields: qc, type, unit, level Task: Fetch reading from air_quality where reading is greater than the minimum of reading in lightning for matching unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082854
train
v2
Sensor network script: Node: pressure | code: ref | fields: reading, value, lat, lon Sensor: drought_index | fields: lat, depth, lon, level Task: Get lat from pressure where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082855
train
v3
Sensor network script: Node: turbidity | code: clr | fields: lon, value, ts, unit Sensor: wind_speed | fields: type, lat, qc, level Task: Get depth from turbidity where reading exceeds the count of reading from wind_speed for the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082856
train
v2
Sensor network script: Node: dew_point | code: thr | fields: unit, lat, qc, ts Sensor: lightning | fields: type, value, ts, reading Task: Get lat from dew_point where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082857
train
v2
Sensor network script: Node: turbidity | code: hub | fields: value, unit, reading, qc Sensor: visibility | fields: lon, depth, type, lat Task: Get level from turbidity where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082858
train
v2
Sensor network script: Node: humidity | code: prt | fields: depth, unit, type, lat Sensor: evaporation | fields: lon, value, reading, level Task: Retrieve lon from humidity that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082859
train
v3
Sensor network script: Node: turbidity | code: stn | fields: ts, qc, unit, value Sensor: air_quality | fields: qc, reading, level, ts Task: Fetch depth from turbidity where value is greater than the minimum of value in air_quality for matching qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082860
train
v1
Sensor network script: Node: evaporation | code: hub | fields: reading, depth, value, level Sensor: frost | fields: qc, unit, lat, depth Task: Retrieve lon from evaporation whose ts is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082861
train
v2
Sensor network script: Node: temperature | code: hub | fields: value, type, reading, lon Sensor: air_quality | fields: qc, value, level, type Task: Fetch depth from temperature that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082862
train
v2
Sensor network script: Node: frost | code: clr | fields: unit, reading, qc, level Sensor: air_quality | fields: depth, type, ts, lat Task: Fetch value from frost that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082863
train
v2
Sensor network script: Node: visibility | code: stn | fields: value, level, unit, qc Sensor: air_quality | fields: type, ts, unit, value Task: Get lat from visibility where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082864
train
v3
Sensor network script: Node: evaporation | code: clr | fields: unit, value, ts, qc Sensor: wind_speed | fields: ts, qc, unit, value Task: Get value from evaporation where reading exceeds the maximum depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082865
train
v1
Sensor network script: Node: turbidity | code: mst | fields: type, value, lat, reading Sensor: snow_depth | fields: type, reading, ts, lat Task: Retrieve reading from turbidity whose ts is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082866
train
v1
Sensor network script: Node: sunlight | code: ref | fields: reading, lon, depth, lat Sensor: rainfall | fields: qc, unit, lat, reading Task: Fetch lat from sunlight where unit exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082867
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, reading, level, qc Sensor: evaporation | fields: type, reading, level, qc Task: Retrieve lon from wind_speed that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082868
train
v1
Sensor network script: Node: turbidity | code: mst | fields: type, lat, lon, unit Sensor: sunlight | fields: lat, depth, value, unit Task: Fetch depth from turbidity where depth exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082869
train
v3
Sensor network script: Node: turbidity | code: mst | fields: type, depth, lon, lat Sensor: pressure | fields: lat, depth, ts, value Task: Get level from turbidity where reading exceeds the average reading from pressure for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082870
train
v3
Sensor network script: Node: humidity | code: stn | fields: depth, unit, reading, lat Sensor: dew_point | fields: value, type, level, qc Task: Retrieve value from humidity with value above the SUM(value) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082871
train
v3
Sensor network script: Node: humidity | code: hub | fields: lon, level, depth, type Sensor: pressure | fields: value, depth, reading, ts Task: Get value from humidity where depth exceeds the total value from pressure for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082872
train
v2
Sensor network script: Node: uv_index | code: ref | fields: value, unit, qc, type Sensor: air_quality | fields: ts, reading, value, lon Task: Retrieve value from uv_index that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082873
train
v2
Sensor network script: Node: sunlight | code: prt | fields: ts, qc, unit, reading Sensor: dew_point | fields: lon, depth, level, value Task: Fetch depth from sunlight that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082874
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, qc, lat, unit Sensor: dew_point | fields: lat, reading, lon, level Task: Fetch value from rainfall where qc exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082875
train
v3
Sensor network script: Node: temperature | code: hub | fields: lon, ts, qc, lat Sensor: frost | fields: qc, lon, level, value Task: Fetch level from temperature where depth is greater than the count of of depth in frost for matching qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082876
train
v2
Sensor network script: Node: dew_point | code: clr | fields: lat, depth, qc, value Sensor: cloud_cover | fields: qc, lon, ts, depth Task: Retrieve lat from dew_point that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082877
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: lon, reading, qc, unit Sensor: dew_point | fields: depth, qc, unit, value Task: Retrieve lon from snow_depth that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082878
train
v2
Sensor network script: Node: rainfall | code: stn | fields: qc, value, depth, lat Sensor: soil_moisture | fields: type, reading, qc, level Task: Get lat from rainfall where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082879
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lat, qc, depth, reading Sensor: frost | fields: lat, level, ts, depth Task: Retrieve lat from drought_index that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082880
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lat, unit, type, value Sensor: frost | fields: qc, value, lon, depth Task: Fetch lon from cloud_cover where ts exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082881
train
v1
Sensor network script: Node: temperature | code: ref | fields: depth, lon, lat, value Sensor: soil_moisture | fields: type, reading, lat, level Task: Get value from temperature where ts appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082882
train
v2
Sensor network script: Node: frost | code: clr | fields: depth, reading, lon, unit Sensor: lightning | fields: value, type, reading, lon Task: Get lat from frost where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082883
train
v1
Sensor network script: Node: humidity | code: ref | fields: unit, value, level, lat Sensor: visibility | fields: value, ts, qc, unit Task: Get value from humidity where type appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082884
train
v3
Sensor network script: Node: visibility | code: gst | fields: value, depth, lat, lon Sensor: air_quality | fields: type, lat, ts, lon Task: Get level from visibility where reading exceeds the count of depth from air_quality for the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082885
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lon, ts, type, reading Sensor: frost | fields: value, type, depth, lon Task: Fetch depth from drought_index where ts exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082886
train
v3
Sensor network script: Node: lightning | code: prt | fields: lat, lon, reading, level Sensor: drought_index | fields: depth, lon, level, value Task: Retrieve depth from lightning with depth above the SUM(reading) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082887
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: depth, unit, lat, level Sensor: uv_index | fields: value, depth, lat, ts Task: Fetch reading from soil_moisture where depth exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082888
train
v3
Sensor network script: Node: drought_index | code: hub | fields: qc, ts, unit, type Sensor: frost | fields: lat, qc, depth, unit Task: Retrieve level from drought_index with reading above the AVG(depth) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082889
train
v1
Sensor network script: Node: turbidity | code: gst | fields: qc, ts, value, unit Sensor: pressure | fields: qc, level, lon, type Task: Get value from turbidity where qc appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082890
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lon, type, ts, unit Sensor: uv_index | fields: lat, lon, qc, reading Task: Get level from snow_depth where value exceeds the total reading from uv_index for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082891
train
v3
Sensor network script: Node: uv_index | code: thr | fields: reading, value, unit, lon Sensor: drought_index | fields: value, level, lon, depth Task: Retrieve value from uv_index with value above the MIN(depth) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082892
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: ts, lat, level, reading Sensor: evaporation | fields: depth, reading, unit, level Task: Get lon from soil_moisture where reading exceeds the minimum depth from evaporation for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082893
train
v1
Sensor network script: Node: pressure | code: mst | fields: qc, value, lat, lon Sensor: cloud_cover | fields: ts, reading, unit, lon Task: Fetch depth from pressure where depth exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082894
train
v2
Sensor network script: Node: pressure | code: clr | fields: lat, unit, level, value Sensor: lightning | fields: reading, lon, qc, level Task: Get reading from pressure where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082895
train
v2
Sensor network script: Node: pressure | code: thr | fields: ts, type, unit, level Sensor: drought_index | fields: reading, unit, depth, qc Task: Get level from pressure where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082896
train
v2
Sensor network script: Node: rainfall | code: mst | fields: depth, ts, value, reading Sensor: turbidity | fields: reading, ts, unit, type Task: Fetch lat from rainfall that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082897
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, lon, ts, value Sensor: sunlight | fields: value, depth, reading, type Task: Retrieve reading from air_quality with depth above the MIN(reading) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_082898
train
v2
Sensor network script: Node: humidity | code: gst | fields: reading, depth, lat, qc Sensor: visibility | fields: depth, reading, unit, value Task: Get depth from humidity where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_082899
train