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: lightning | code: clr | fields: depth, ts, reading, unit Sensor: pressure | fields: depth, lon, qc, unit Task: Retrieve lat from lightning whose ts is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017000
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: depth, lat, lon, value Sensor: humidity | fields: ts, reading, value, depth Task: Retrieve depth from snow_depth with depth above the MAX(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017001
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: qc, type, unit, level Sensor: cloud_cover | fields: reading, lat, ts, qc Task: Fetch lon from soil_moisture that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017002
train
v1
Sensor network script: Node: rainfall | code: gst | fields: value, type, lon, qc Sensor: snow_depth | fields: value, type, lat, unit Task: Get lon from rainfall where qc appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017003
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: level, reading, type, qc Sensor: pressure | fields: lat, level, reading, type Task: Retrieve lon from snow_depth whose depth is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017004
train
v3
Sensor network script: Node: temperature | code: mst | fields: depth, unit, lat, ts Sensor: turbidity | fields: depth, value, unit, lat Task: Retrieve reading from temperature with value above the MAX(value) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017005
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lat, unit, level, value Sensor: lightning | fields: type, depth, lat, level Task: Retrieve level from rainfall whose qc is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017006
train
v1
Sensor network script: Node: air_quality | code: ref | fields: unit, qc, reading, level Sensor: temperature | fields: type, value, qc, lat Task: Get depth from air_quality where unit appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017007
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: qc, level, depth, unit Sensor: snow_depth | fields: lat, ts, depth, value Task: Retrieve depth from wind_speed whose depth is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017008
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: unit, qc, lon, value Sensor: humidity | fields: type, lon, ts, level Task: Get lat from cloud_cover where value exceeds the maximum reading from humidity for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017009
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: value, depth, qc, level Sensor: evaporation | fields: type, unit, depth, level Task: Get lat from snow_depth where qc appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017010
train
v3
Sensor network script: Node: pressure | code: mst | fields: level, lat, unit, depth Sensor: uv_index | fields: depth, unit, lon, type Task: Fetch lat from pressure where depth is greater than the average of value in uv_index for matching unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017011
train
v3
Sensor network script: Node: humidity | code: stn | fields: lon, depth, lat, type Sensor: uv_index | fields: depth, lon, type, qc Task: Retrieve reading from humidity with reading above the SUM(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017012
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: reading, type, lon, lat Sensor: snow_depth | fields: depth, value, lat, lon Task: Retrieve lon from soil_moisture that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017013
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: qc, level, lat, value Sensor: frost | fields: depth, value, reading, level Task: Get level from snow_depth where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017014
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: ts, lon, qc, unit Sensor: temperature | fields: level, lat, depth, reading Task: Retrieve value from cloud_cover that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017015
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: lat, reading, ts, level Sensor: snow_depth | fields: qc, level, unit, reading Task: Retrieve depth from wind_speed whose type is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017016
train
v3
Sensor network script: Node: frost | code: mst | fields: unit, type, lat, level Sensor: rainfall | fields: depth, level, ts, lat Task: Get level from frost where value exceeds the count of value from rainfall for the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017017
train
v2
Sensor network script: Node: air_quality | code: ref | fields: reading, level, value, qc Sensor: frost | fields: lat, ts, depth, type Task: Fetch reading from air_quality that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017018
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: lat, value, unit, level Sensor: evaporation | fields: ts, depth, unit, type Task: Fetch value from snow_depth where value is greater than the average of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017019
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: qc, lon, lat, level Sensor: rainfall | fields: value, reading, level, ts Task: Fetch lon from soil_moisture where ts exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017020
train
v1
Sensor network script: Node: rainfall | code: thr | fields: depth, level, type, reading Sensor: dew_point | fields: ts, lat, value, level Task: Fetch level from rainfall where depth exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="depth", 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", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017021
train
v3
Sensor network script: Node: evaporation | code: mst | fields: depth, value, lat, qc Sensor: temperature | fields: depth, qc, reading, lon Task: Retrieve reading from evaporation with value above the SUM(value) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017022
train
v2
Sensor network script: Node: lightning | code: gst | fields: ts, lat, depth, type Sensor: drought_index | fields: lon, type, depth, value Task: Fetch lon from lightning that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017023
train
v2
Sensor network script: Node: visibility | code: stn | fields: depth, value, unit, lat Sensor: humidity | fields: qc, value, level, depth Task: Fetch lat from visibility that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017024
train
v1
Sensor network script: Node: turbidity | code: thr | fields: type, ts, lat, reading Sensor: cloud_cover | fields: reading, qc, level, unit Task: Fetch lat from turbidity where type exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017025
train
v1
Sensor network script: Node: rainfall | code: thr | fields: ts, depth, type, lon Sensor: air_quality | fields: type, level, depth, reading Task: Fetch reading from rainfall where unit exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017026
train
v1
Sensor network script: Node: dew_point | code: ref | fields: reading, type, ts, lon Sensor: temperature | fields: ts, reading, unit, value Task: Retrieve depth from dew_point whose ts is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017027
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: lon, type, lat, value Sensor: snow_depth | fields: depth, type, qc, reading Task: Retrieve lat from cloud_cover with value above the AVG(reading) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017028
train
v1
Sensor network script: Node: frost | code: prt | fields: reading, qc, lat, level Sensor: wind_speed | fields: lat, reading, lon, depth Task: Fetch lon from frost where qc exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017029
train
v1
Sensor network script: Node: sunlight | code: clr | fields: ts, lat, type, depth Sensor: dew_point | fields: unit, depth, ts, lon Task: Fetch depth from sunlight where unit exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017030
train
v3
Sensor network script: Node: dew_point | code: prt | fields: level, reading, lon, value Sensor: lightning | fields: lat, type, unit, lon Task: Retrieve lon from dew_point with reading above the MIN(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017031
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: lon, ts, unit, level Sensor: visibility | fields: reading, lon, value, depth Task: Get lon from soil_moisture where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017032
train
v2
Sensor network script: Node: visibility | code: ref | fields: qc, level, reading, depth Sensor: cloud_cover | fields: reading, qc, type, ts Task: Fetch level from visibility that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017033
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: unit, level, lat, type Sensor: frost | fields: type, unit, depth, lat Task: Get lat from wind_speed where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017034
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, qc, value, unit Sensor: snow_depth | fields: level, qc, unit, depth Task: Get lat from frost where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017035
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: depth, qc, lat, type Sensor: dew_point | fields: lon, depth, ts, unit Task: Get lon from soil_moisture where value exceeds the total depth from dew_point for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017036
train
v1
Sensor network script: Node: turbidity | code: stn | fields: qc, lat, reading, value Sensor: soil_moisture | fields: depth, type, value, level Task: Retrieve depth from turbidity whose type is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017037
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lat, value, reading, lon Sensor: wind_speed | fields: depth, unit, type, qc Task: Retrieve depth from rainfall with value above the COUNT(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017038
train
v1
Sensor network script: Node: turbidity | code: gst | fields: qc, level, type, lat Sensor: temperature | fields: unit, ts, lat, lon Task: Retrieve lon from turbidity whose depth is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017039
train
v2
Sensor network script: Node: uv_index | code: ref | fields: reading, value, type, unit Sensor: visibility | fields: unit, qc, reading, value Task: Fetch value from uv_index that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017040
train
v3
Sensor network script: Node: dew_point | code: thr | fields: value, lat, depth, type Sensor: sunlight | fields: qc, lon, depth, unit Task: Get reading from dew_point where reading exceeds the count of depth from sunlight for the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017041
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: depth, unit, type, value Sensor: pressure | fields: qc, lon, value, type Task: Fetch lat from wind_speed where depth is greater than the total of reading in pressure for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017042
train
v2
Sensor network script: Node: visibility | code: ref | fields: unit, ts, lat, level Sensor: dew_point | fields: type, depth, lat, qc Task: Fetch reading from visibility that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017043
train
v2
Sensor network script: Node: air_quality | code: stn | fields: unit, reading, qc, lat Sensor: visibility | fields: level, qc, type, ts Task: Fetch value from air_quality that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017044
train
v2
Sensor network script: Node: pressure | code: ref | fields: level, reading, depth, type Sensor: uv_index | fields: level, depth, ts, lat Task: Get reading from pressure where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017045
train
v3
Sensor network script: Node: uv_index | code: mst | fields: value, lon, reading, lat Sensor: visibility | fields: lon, depth, qc, reading Task: Retrieve lon from uv_index with depth above the COUNT(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017046
train
v2
Sensor network script: Node: rainfall | code: stn | fields: ts, value, unit, depth Sensor: wind_speed | fields: type, unit, qc, value Task: Fetch value from rainfall that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017047
train
v1
Sensor network script: Node: drought_index | code: thr | fields: type, unit, level, value Sensor: wind_speed | fields: lon, depth, qc, type Task: Fetch value from drought_index where qc exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017048
train
v1
Sensor network script: Node: temperature | code: stn | fields: value, unit, level, lon Sensor: visibility | fields: ts, unit, qc, reading Task: Fetch depth from temperature where depth exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017049
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: qc, lat, lon, ts Sensor: rainfall | fields: qc, ts, lon, unit Task: Get value from snow_depth where reading exceeds the total reading from rainfall for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "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_017050
train
v2
Sensor network script: Node: temperature | code: hub | fields: qc, level, reading, ts Sensor: snow_depth | fields: lat, depth, ts, value Task: Fetch lon from temperature that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017051
train
v1
Sensor network script: Node: temperature | code: stn | fields: lat, depth, lon, qc Sensor: soil_moisture | fields: unit, ts, qc, lat Task: Get level from temperature where type appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017052
train
v3
Sensor network script: Node: uv_index | code: hub | fields: lat, unit, qc, type Sensor: sunlight | fields: type, value, depth, level Task: Get value from uv_index where depth exceeds the maximum value from sunlight for the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017053
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: depth, value, lon, qc Sensor: uv_index | fields: lon, unit, value, ts Task: Fetch value from wind_speed where qc exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017054
train
v3
Sensor network script: Node: rainfall | code: thr | fields: level, type, lon, unit Sensor: dew_point | fields: unit, reading, qc, lon Task: Retrieve level from rainfall with reading above the SUM(reading) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017055
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: type, ts, unit, depth Sensor: frost | fields: reading, qc, value, depth Task: Fetch reading from wind_speed where reading is greater than the minimum of reading in frost for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017056
train
v1
Sensor network script: Node: drought_index | code: gst | fields: ts, unit, value, qc Sensor: evaporation | fields: lon, unit, depth, reading Task: Get level from drought_index where unit appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017057
train
v1
Sensor network script: Node: temperature | code: thr | fields: unit, ts, value, type Sensor: snow_depth | fields: unit, lon, depth, value Task: Get depth from temperature where qc appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017058
train
v1
Sensor network script: Node: temperature | code: ref | fields: unit, value, lon, ts Sensor: air_quality | fields: reading, qc, unit, depth Task: Get lat from temperature where qc appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "temperature", "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_017059
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lon, qc, value, ts Sensor: dew_point | fields: lat, value, level, ts Task: Fetch reading from cloud_cover where ts exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017060
train
v1
Sensor network script: Node: sunlight | code: thr | fields: level, reading, ts, type Sensor: wind_speed | fields: depth, qc, level, value Task: Fetch depth from sunlight where ts exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017061
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: depth, ts, qc, unit Sensor: dew_point | fields: reading, type, unit, lon Task: Get lon from cloud_cover where value exceeds the count of reading from dew_point for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017062
train
v1
Sensor network script: Node: evaporation | code: clr | fields: qc, reading, value, lon Sensor: air_quality | fields: qc, reading, type, lat Task: Retrieve lat from evaporation whose unit is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017063
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: type, reading, lon, ts Sensor: soil_moisture | fields: unit, qc, level, lat Task: Retrieve level from wind_speed that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017064
train
v2
Sensor network script: Node: dew_point | code: thr | fields: reading, ts, qc, lon Sensor: pressure | fields: depth, level, lat, qc Task: Fetch reading from dew_point that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017065
train
v2
Sensor network script: Node: drought_index | code: thr | fields: reading, level, value, lat Sensor: frost | fields: reading, lat, qc, ts Task: Get lat from drought_index where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017066
train
v1
Sensor network script: Node: humidity | code: gst | fields: lon, reading, unit, level Sensor: temperature | fields: type, reading, lat, ts Task: Fetch level from humidity where depth exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017067
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lon, level, value, ts Sensor: snow_depth | fields: value, ts, lon, lat Task: Fetch lon from wind_speed that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017068
train
v3
Sensor network script: Node: drought_index | code: gst | fields: lat, ts, reading, qc Sensor: snow_depth | fields: unit, level, qc, reading Task: Retrieve level from drought_index with reading above the AVG(reading) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017069
train
v3
Sensor network script: Node: air_quality | code: gst | fields: type, depth, qc, unit Sensor: lightning | fields: lon, lat, ts, reading Task: Get lon from air_quality where reading exceeds the minimum value from lightning for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017070
train
v1
Sensor network script: Node: air_quality | code: thr | fields: level, depth, reading, qc Sensor: uv_index | fields: qc, lat, ts, reading Task: Get reading from air_quality where qc appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017071
train
v3
Sensor network script: Node: visibility | code: mst | fields: level, lon, lat, depth Sensor: sunlight | fields: lon, ts, type, level Task: Fetch value from visibility where reading is greater than the maximum of value in sunlight for matching unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017072
train
v1
Sensor network script: Node: pressure | code: mst | fields: qc, lon, lat, unit Sensor: dew_point | fields: ts, type, level, depth Task: Get depth from pressure where unit appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017073
train
v1
Sensor network script: Node: rainfall | code: mst | fields: lat, unit, lon, level Sensor: dew_point | fields: depth, reading, ts, value Task: Get lat from rainfall where type appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017074
train
v1
Sensor network script: Node: sunlight | code: mst | fields: value, ts, reading, unit Sensor: rainfall | fields: lat, lon, reading, value Task: Retrieve value from sunlight whose unit is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017075
train
v3
Sensor network script: Node: visibility | code: stn | fields: ts, qc, reading, depth Sensor: temperature | fields: value, reading, lon, lat Task: Get depth from visibility where depth exceeds the maximum reading from temperature for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017076
train
v3
Sensor network script: Node: evaporation | code: thr | fields: level, depth, ts, lat Sensor: uv_index | fields: lat, depth, ts, reading Task: Get depth from evaporation where depth exceeds the minimum value from uv_index for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017077
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: type, reading, ts, level Sensor: visibility | fields: unit, level, value, ts Task: Fetch reading from cloud_cover where depth is greater than the minimum of value in visibility for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017078
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: qc, lon, unit, reading Sensor: temperature | fields: depth, type, level, lon Task: Get depth from snow_depth where ts appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017079
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: lat, unit, qc, level Sensor: air_quality | fields: qc, reading, type, value Task: Fetch value from snow_depth that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017080
train
v1
Sensor network script: Node: humidity | code: hub | fields: reading, level, ts, unit Sensor: soil_moisture | fields: lat, value, depth, unit Task: Retrieve level from humidity whose ts is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017081
train
v2
Sensor network script: Node: pressure | code: stn | fields: unit, ts, depth, reading Sensor: cloud_cover | fields: unit, reading, value, ts Task: Fetch value from pressure that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017082
train
v3
Sensor network script: Node: rainfall | code: hub | fields: level, type, reading, depth Sensor: air_quality | fields: value, unit, depth, type Task: Fetch value from rainfall where depth is greater than the maximum of depth in air_quality for matching unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017083
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: type, lon, ts, reading Sensor: humidity | fields: reading, lon, lat, depth Task: Retrieve reading from soil_moisture with reading above the MAX(depth) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017084
train
v1
Sensor network script: Node: turbidity | code: stn | fields: reading, lon, type, unit Sensor: air_quality | fields: unit, reading, qc, lon Task: Fetch reading from turbidity where unit exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017085
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lat, qc, reading, value Sensor: humidity | fields: ts, unit, level, depth Task: Get depth from uv_index where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017086
train
v3
Sensor network script: Node: turbidity | code: prt | fields: ts, qc, unit, depth Sensor: pressure | fields: lon, lat, qc, type Task: Retrieve lat from turbidity with depth above the COUNT(value) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017087
train
v2
Sensor network script: Node: rainfall | code: prt | fields: level, qc, depth, value Sensor: evaporation | fields: depth, ts, level, lat Task: Fetch lat from rainfall that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017088
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: depth, lon, ts, value Sensor: air_quality | fields: value, reading, lat, level Task: Fetch lon from soil_moisture where qc exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017089
train
v3
Sensor network script: Node: evaporation | code: thr | fields: value, lat, qc, type Sensor: sunlight | fields: qc, lon, level, ts Task: Get depth from evaporation where depth exceeds the count of value from sunlight for the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017090
train
v3
Sensor network script: Node: air_quality | code: clr | fields: type, lat, depth, qc Sensor: drought_index | fields: type, lon, depth, reading Task: Fetch level from air_quality where reading is greater than the minimum of depth in drought_index for matching unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017091
train
v2
Sensor network script: Node: dew_point | code: thr | fields: level, depth, type, ts Sensor: humidity | fields: type, lat, qc, unit Task: Get value from dew_point where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017092
train
v2
Sensor network script: Node: temperature | code: gst | fields: depth, lat, lon, qc Sensor: sunlight | fields: qc, ts, depth, reading Task: Fetch depth from temperature that have at least one corresponding sunlight measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017093
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: ts, depth, reading, lat Sensor: soil_moisture | fields: reading, unit, value, lat Task: Fetch reading from wind_speed where type exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017094
train
v3
Sensor network script: Node: dew_point | code: prt | fields: ts, value, qc, level Sensor: uv_index | fields: unit, lat, depth, value Task: Get value from dew_point where value exceeds the total depth from uv_index for the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017095
train
v2
Sensor network script: Node: frost | code: stn | fields: depth, unit, lat, value Sensor: sunlight | fields: lat, qc, level, value Task: Retrieve reading from frost that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017096
train
v3
Sensor network script: Node: drought_index | code: mst | fields: depth, ts, value, lat Sensor: uv_index | fields: ts, unit, value, type Task: Fetch value from drought_index where depth is greater than the total of value in uv_index for matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017097
train
v3
Sensor network script: Node: evaporation | code: mst | fields: level, ts, qc, lon Sensor: rainfall | fields: reading, lon, unit, depth Task: Fetch level from evaporation where value is greater than the minimum of value in rainfall for matching depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017098
train
v2
Sensor network script: Node: drought_index | code: thr | fields: lat, value, ts, reading Sensor: sunlight | fields: level, ts, lat, value Task: Get depth from drought_index where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017099
train