variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: soil_moisture | code: gst | fields: qc, lon, type, reading Sensor: cloud_cover | fields: reading, qc, lat, unit Task: Fetch lat from soil_moisture where depth exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011800
train
v2
Sensor network script: Node: humidity | code: gst | fields: lon, lat, reading, qc Sensor: pressure | fields: level, ts, type, lat Task: Retrieve lon from humidity that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011801
train
v1
Sensor network script: Node: drought_index | code: gst | fields: value, ts, reading, lon Sensor: sunlight | fields: ts, lat, qc, value Task: Retrieve reading from drought_index whose depth is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011802
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: reading, depth, ts, lon Sensor: rainfall | fields: reading, value, unit, type Task: Fetch depth from soil_moisture where qc exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011803
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: unit, lat, value, lon Sensor: dew_point | fields: reading, unit, value, qc Task: Retrieve reading from wind_speed whose qc is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011804
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: reading, value, unit, ts Sensor: air_quality | fields: type, lat, unit, value Task: Retrieve lat from soil_moisture whose qc is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011805
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, level, depth, lon Sensor: dew_point | fields: lon, type, lat, ts Task: Retrieve lon from uv_index that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011806
train
v3
Sensor network script: Node: frost | code: thr | fields: lat, qc, depth, ts Sensor: lightning | fields: ts, depth, qc, reading Task: Get lon from frost where reading exceeds the minimum value from lightning for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011807
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: lon, ts, unit, value Sensor: pressure | fields: value, depth, type, lon Task: Retrieve level from cloud_cover with reading above the SUM(reading) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011808
train
v3
Sensor network script: Node: lightning | code: stn | fields: depth, lat, reading, qc Sensor: frost | fields: level, lon, type, lat Task: Fetch level from lightning where depth is greater than the average of depth in frost for matching unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011809
train
v2
Sensor network script: Node: drought_index | code: gst | fields: unit, lon, value, reading Sensor: uv_index | fields: reading, ts, unit, value Task: Retrieve reading from drought_index that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011810
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lat, lon, depth, qc Sensor: sunlight | fields: lat, qc, lon, ts Task: Retrieve value from soil_moisture whose unit is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011811
train
v3
Sensor network script: Node: turbidity | code: mst | fields: value, level, type, reading Sensor: snow_depth | fields: level, qc, value, lat Task: Fetch value from turbidity where depth is greater than the total of reading in snow_depth for matching depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011812
train
v1
Sensor network script: Node: evaporation | code: clr | fields: depth, level, lat, lon Sensor: dew_point | fields: unit, value, type, reading Task: Get level from evaporation where ts appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011813
train
v3
Sensor network script: Node: turbidity | code: stn | fields: qc, value, level, depth Sensor: snow_depth | fields: type, value, ts, level Task: Retrieve lat from turbidity with value above the MIN(depth) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011814
train
v2
Sensor network script: Node: sunlight | code: clr | fields: unit, qc, depth, type Sensor: rainfall | fields: level, value, lon, qc Task: Fetch level from sunlight that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011815
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: level, lon, unit, value Sensor: uv_index | fields: qc, level, type, value Task: Retrieve lat from wind_speed with depth above the AVG(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011816
train
v3
Sensor network script: Node: visibility | code: prt | fields: reading, ts, level, depth Sensor: humidity | fields: level, unit, ts, depth Task: Retrieve reading from visibility with value above the SUM(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011817
train
v3
Sensor network script: Node: temperature | code: prt | fields: reading, unit, lon, type Sensor: snow_depth | fields: qc, depth, value, type Task: Fetch level from temperature where reading is greater than the maximum of depth in snow_depth for matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011818
train
v3
Sensor network script: Node: air_quality | code: ref | fields: level, lon, ts, depth Sensor: frost | fields: depth, type, ts, unit Task: Get level from air_quality where value exceeds the total value from frost for the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011819
train
v1
Sensor network script: Node: visibility | code: thr | fields: level, ts, value, reading Sensor: air_quality | fields: lon, unit, lat, value Task: Fetch value from visibility where ts exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011820
train
v3
Sensor network script: Node: evaporation | code: clr | fields: type, unit, depth, level Sensor: drought_index | fields: reading, depth, lat, type Task: Retrieve lon from evaporation with depth above the SUM(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011821
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: reading, type, level, lat Sensor: rainfall | fields: unit, depth, ts, reading Task: Get lon from soil_moisture where value exceeds the count of value from rainfall for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011822
train
v2
Sensor network script: Node: dew_point | code: mst | fields: value, reading, depth, lat Sensor: wind_speed | fields: depth, value, lat, level Task: Fetch lat from dew_point that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011823
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lat, lon, reading, ts Sensor: rainfall | fields: type, value, unit, lat Task: Retrieve level from sunlight with depth above the MIN(depth) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011824
train
v2
Sensor network script: Node: uv_index | code: thr | fields: lon, depth, unit, value Sensor: evaporation | fields: level, depth, value, reading Task: Retrieve depth from uv_index that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011825
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lat, value, type, ts Sensor: drought_index | fields: ts, unit, lon, lat Task: Fetch lon from uv_index that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011826
train
v2
Sensor network script: Node: turbidity | code: mst | fields: value, unit, ts, lon Sensor: humidity | fields: value, ts, depth, lon Task: Fetch value from turbidity that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011827
train
v1
Sensor network script: Node: frost | code: clr | fields: unit, level, depth, ts Sensor: humidity | fields: reading, level, qc, value Task: Retrieve level from frost whose depth is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011828
train
v2
Sensor network script: Node: temperature | code: hub | fields: value, level, ts, reading Sensor: turbidity | fields: qc, ts, type, value Task: Retrieve depth from temperature that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011829
train
v1
Sensor network script: Node: evaporation | code: thr | fields: unit, type, depth, qc Sensor: dew_point | fields: value, unit, lat, lon Task: Get value from evaporation where type appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011830
train
v1
Sensor network script: Node: uv_index | code: clr | fields: qc, lon, reading, type Sensor: wind_speed | fields: lon, reading, level, qc Task: Retrieve lat from uv_index whose type is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011831
train
v1
Sensor network script: Node: turbidity | code: stn | fields: value, depth, unit, lat Sensor: dew_point | fields: qc, unit, reading, ts Task: Retrieve lon from turbidity whose depth is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011832
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: lon, reading, lat, type Sensor: evaporation | fields: reading, depth, value, unit Task: Retrieve depth from wind_speed whose ts is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011833
train
v3
Sensor network script: Node: temperature | code: ref | fields: level, depth, unit, type Sensor: drought_index | fields: qc, lon, type, level Task: Fetch reading from temperature where value is greater than the count of of value in drought_index for matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011834
train
v3
Sensor network script: Node: pressure | code: hub | fields: ts, type, level, unit Sensor: snow_depth | fields: level, value, depth, lat Task: Retrieve reading from pressure with reading above the AVG(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011835
train
v2
Sensor network script: Node: visibility | code: prt | fields: reading, level, unit, type Sensor: turbidity | fields: unit, reading, lat, ts Task: Fetch value from visibility that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011836
train
v2
Sensor network script: Node: lightning | code: stn | fields: level, unit, depth, lon Sensor: pressure | fields: lat, depth, value, type Task: Retrieve lat from lightning that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011837
train
v2
Sensor network script: Node: visibility | code: stn | fields: value, lon, reading, qc Sensor: turbidity | fields: reading, depth, ts, value Task: Get value from visibility where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011838
train
v1
Sensor network script: Node: visibility | code: prt | fields: reading, depth, qc, value Sensor: cloud_cover | fields: unit, reading, level, value Task: Get value from visibility where ts appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011839
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: unit, level, lat, value Sensor: turbidity | fields: qc, depth, lat, ts Task: Get value from snow_depth where type appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011840
train
v2
Sensor network script: Node: pressure | code: mst | fields: lon, ts, value, type Sensor: evaporation | fields: reading, level, unit, type Task: Fetch reading from pressure that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011841
train
v3
Sensor network script: Node: uv_index | code: ref | fields: ts, qc, value, lat Sensor: rainfall | fields: value, lon, qc, type Task: Get level from uv_index where value exceeds the maximum depth from rainfall for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011842
train
v2
Sensor network script: Node: lightning | code: gst | fields: ts, lat, reading, level Sensor: uv_index | fields: type, unit, qc, depth Task: Fetch value from lightning that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011843
train
v1
Sensor network script: Node: rainfall | code: prt | fields: value, type, qc, level Sensor: cloud_cover | fields: level, ts, value, lat Task: Fetch reading from rainfall where ts exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011844
train
v2
Sensor network script: Node: pressure | code: clr | fields: unit, type, lat, qc Sensor: dew_point | fields: qc, reading, lon, unit Task: Fetch value from pressure that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011845
train
v2
Sensor network script: Node: air_quality | code: clr | fields: lat, type, ts, reading Sensor: uv_index | fields: lon, lat, unit, level Task: Fetch lon from air_quality that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011846
train
v1
Sensor network script: Node: turbidity | code: ref | fields: level, type, qc, lat Sensor: cloud_cover | fields: level, reading, lon, lat Task: Fetch level from turbidity where unit exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011847
train
v1
Sensor network script: Node: humidity | code: gst | fields: lat, qc, ts, value Sensor: frost | fields: unit, ts, lon, type Task: Fetch level from humidity where ts exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011848
train
v3
Sensor network script: Node: lightning | code: ref | fields: qc, type, depth, ts Sensor: turbidity | fields: lat, reading, type, level Task: Get level from lightning where reading exceeds the maximum depth from turbidity for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011849
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: level, ts, type, depth Sensor: air_quality | fields: lon, depth, ts, type Task: Get depth from snow_depth where unit appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011850
train
v1
Sensor network script: Node: lightning | code: ref | fields: reading, type, depth, lon Sensor: rainfall | fields: level, reading, unit, type Task: Retrieve lat from lightning whose depth is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011851
train
v1
Sensor network script: Node: sunlight | code: stn | fields: depth, lon, lat, ts Sensor: snow_depth | fields: type, depth, level, qc Task: Retrieve lat from sunlight whose depth is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011852
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: type, value, reading, lat Sensor: drought_index | fields: ts, qc, type, lon Task: Retrieve level from wind_speed with depth above the MAX(reading) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011853
train
v1
Sensor network script: Node: humidity | code: mst | fields: ts, level, qc, value Sensor: soil_moisture | fields: reading, ts, type, depth Task: Fetch lat from humidity where depth exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011854
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, type, reading, level Sensor: sunlight | fields: lat, qc, reading, type Task: Retrieve reading from visibility whose unit is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011855
train
v1
Sensor network script: Node: evaporation | code: thr | fields: type, unit, level, value Sensor: soil_moisture | fields: depth, lon, qc, lat Task: Get lat from evaporation where ts appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011856
train
v1
Sensor network script: Node: rainfall | code: stn | fields: value, lat, reading, qc Sensor: soil_moisture | fields: lon, level, lat, type Task: Retrieve reading from rainfall whose depth is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011857
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: qc, level, unit, lon Sensor: sunlight | fields: lon, reading, lat, unit Task: Retrieve lat from soil_moisture that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011858
train
v2
Sensor network script: Node: uv_index | code: prt | fields: qc, level, lat, lon Sensor: visibility | fields: depth, qc, lon, lat Task: Retrieve depth from uv_index that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011859
train
v1
Sensor network script: Node: dew_point | code: hub | fields: reading, depth, ts, type Sensor: humidity | fields: type, unit, qc, reading Task: Fetch reading from dew_point where qc exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011860
train
v3
Sensor network script: Node: rainfall | code: clr | fields: depth, value, type, ts Sensor: lightning | fields: reading, lat, lon, unit Task: Fetch lat from rainfall where depth is greater than the total of value in lightning for matching unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011861
train
v3
Sensor network script: Node: visibility | code: prt | fields: reading, type, lat, depth Sensor: sunlight | fields: reading, level, lon, ts Task: Get lat from visibility where value exceeds the minimum value from sunlight for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011862
train
v2
Sensor network script: Node: rainfall | code: hub | fields: depth, level, ts, unit Sensor: frost | fields: depth, lon, unit, lat Task: Fetch lon from rainfall that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011863
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: lat, qc, value, level Sensor: wind_speed | fields: lat, level, value, depth Task: Retrieve value from cloud_cover that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011864
train
v2
Sensor network script: Node: temperature | code: thr | fields: value, unit, lon, reading Sensor: humidity | fields: depth, lon, reading, ts Task: Get lat from temperature where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011865
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lat, unit, ts, level Sensor: wind_speed | fields: level, qc, reading, value Task: Fetch level from snow_depth that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011866
train
v3
Sensor network script: Node: visibility | code: ref | fields: lon, depth, qc, level Sensor: rainfall | fields: level, reading, lat, depth Task: Fetch level from visibility where reading is greater than the total of reading in rainfall for matching qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011867
train
v2
Sensor network script: Node: rainfall | code: stn | fields: value, qc, ts, depth Sensor: turbidity | fields: value, depth, lat, type Task: Fetch reading from rainfall that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011868
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: qc, level, lon, reading Sensor: air_quality | fields: lon, unit, depth, reading Task: Fetch depth from wind_speed where reading is greater than the count of of reading in air_quality for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011869
train
v2
Sensor network script: Node: sunlight | code: thr | fields: ts, lat, unit, depth Sensor: drought_index | fields: lon, type, unit, level Task: Retrieve lat from sunlight that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011870
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: depth, lat, ts, type Sensor: air_quality | fields: ts, type, level, depth Task: Retrieve lon from wind_speed that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011871
train
v1
Sensor network script: Node: uv_index | code: stn | fields: reading, lat, value, type Sensor: rainfall | fields: lat, unit, ts, depth Task: Fetch depth from uv_index where unit exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011872
train
v3
Sensor network script: Node: evaporation | code: clr | fields: qc, value, depth, lat Sensor: rainfall | fields: depth, type, ts, reading Task: Fetch depth from evaporation where value is greater than the average of depth in rainfall for matching type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011873
train
v3
Sensor network script: Node: humidity | code: mst | fields: qc, value, lat, ts Sensor: evaporation | fields: qc, type, reading, lat Task: Get lon from humidity where depth exceeds the minimum reading from evaporation for the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011874
train
v1
Sensor network script: Node: evaporation | code: gst | fields: reading, qc, value, lon Sensor: turbidity | fields: ts, value, lat, qc Task: Retrieve reading from evaporation whose type is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011875
train
v3
Sensor network script: Node: dew_point | code: mst | fields: lat, lon, reading, unit Sensor: cloud_cover | fields: level, depth, lat, reading Task: Retrieve lat from dew_point with value above the AVG(depth) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011876
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: lon, depth, type, ts Sensor: turbidity | fields: reading, unit, qc, lat Task: Get reading from wind_speed where depth appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011877
train
v1
Sensor network script: Node: dew_point | code: stn | fields: value, unit, qc, ts Sensor: drought_index | fields: value, type, depth, qc Task: Retrieve depth from dew_point whose type is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011878
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: level, value, qc, ts Sensor: pressure | fields: depth, lat, lon, ts Task: Retrieve depth from snow_depth that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011879
train
v1
Sensor network script: Node: drought_index | code: gst | fields: reading, value, ts, unit Sensor: frost | fields: reading, ts, qc, type Task: Get level from drought_index where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011880
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, value, type, level Sensor: drought_index | fields: ts, lon, value, unit Task: Retrieve value from pressure that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011881
train
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, level, lat, lon Sensor: visibility | fields: level, value, type, lat Task: Get level from dew_point where reading exceeds the total depth from visibility for the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011882
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: unit, qc, reading, type Sensor: evaporation | fields: unit, ts, qc, value Task: Retrieve lat from wind_speed that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011883
train
v1
Sensor network script: Node: visibility | code: hub | fields: level, lat, unit, value Sensor: turbidity | fields: level, unit, ts, reading Task: Retrieve lat from visibility whose ts is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011884
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, lon, reading, lat Sensor: uv_index | fields: unit, lat, qc, depth Task: Get lat from lightning where reading exceeds the count of reading from uv_index for the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011885
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: ts, level, value, unit Sensor: sunlight | fields: lon, qc, level, depth Task: Retrieve depth from cloud_cover that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011886
train
v3
Sensor network script: Node: drought_index | code: mst | fields: lat, unit, level, ts Sensor: frost | fields: level, lon, qc, type Task: Get lon from drought_index where reading exceeds the count of value from frost for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="type"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011887
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: level, lat, depth, ts Sensor: humidity | fields: type, lon, level, qc Task: Fetch value from snow_depth where type exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011888
train
v3
Sensor network script: Node: sunlight | code: stn | fields: value, type, lon, level Sensor: air_quality | fields: depth, value, level, qc Task: Get lat from sunlight where value exceeds the count of depth from air_quality for the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011889
train
v2
Sensor network script: Node: rainfall | code: mst | fields: ts, qc, unit, depth Sensor: humidity | fields: lon, unit, ts, type Task: Get reading from rainfall where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011890
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: level, unit, reading, lon Sensor: sunlight | fields: lat, ts, lon, value Task: Get lat from wind_speed where qc appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011891
train
v1
Sensor network script: Node: uv_index | code: clr | fields: value, depth, type, qc Sensor: evaporation | fields: reading, value, ts, lat Task: Retrieve level from uv_index whose depth is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011892
train
v3
Sensor network script: Node: evaporation | code: hub | fields: value, qc, unit, level Sensor: humidity | fields: lat, level, ts, type Task: Get lat from evaporation where value exceeds the total depth from humidity for the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011893
train
v1
Sensor network script: Node: lightning | code: stn | fields: ts, depth, qc, unit Sensor: pressure | fields: depth, lon, qc, value Task: Fetch value from lightning where qc exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011894
train
v2
Sensor network script: Node: evaporation | code: clr | fields: type, value, level, depth Sensor: snow_depth | fields: qc, lon, reading, type Task: Retrieve lon from evaporation that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011895
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: depth, reading, value, lat Sensor: dew_point | fields: level, lon, qc, lat Task: Get value from cloud_cover where qc appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011896
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: value, lon, ts, reading Sensor: drought_index | fields: depth, qc, reading, lat Task: Retrieve value from wind_speed with reading above the SUM(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011897
train
v2
Sensor network script: Node: lightning | code: mst | fields: unit, qc, reading, type Sensor: soil_moisture | fields: level, lon, qc, lat Task: Fetch lon from lightning that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011898
train
v3
Sensor network script: Node: lightning | code: hub | fields: reading, value, level, depth Sensor: temperature | fields: lat, unit, value, level Task: Retrieve lon from lightning with reading above the MAX(reading) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011899
train