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: snow_depth | code: mst | fields: unit, depth, type, value Sensor: visibility | fields: reading, qc, type, lat Task: Fetch lon from snow_depth where qc exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073100
train
v3
Sensor network script: Node: visibility | code: gst | fields: type, ts, lon, unit Sensor: temperature | fields: type, ts, reading, level Task: Get lat from visibility where value exceeds the average depth from temperature for the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073101
train
v1
Sensor network script: Node: dew_point | code: gst | fields: lon, depth, reading, ts Sensor: humidity | fields: depth, reading, qc, value Task: Fetch lon from dew_point where qc exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073102
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: qc, reading, depth, level Sensor: temperature | fields: value, qc, level, unit Task: Retrieve depth from cloud_cover whose ts is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073103
train
v2
Sensor network script: Node: air_quality | code: stn | fields: qc, value, lat, type Sensor: pressure | fields: depth, lat, value, ts Task: Fetch lon from air_quality that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073104
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: level, lat, ts, reading Sensor: humidity | fields: value, qc, lon, ts Task: Fetch reading from cloud_cover where qc exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073105
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: ts, type, lat, level Sensor: rainfall | fields: qc, depth, lon, lat Task: Retrieve depth from cloud_cover that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073106
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lon, depth, ts, lat Sensor: frost | fields: qc, lon, level, value Task: Get depth from wind_speed where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073107
train
v3
Sensor network script: Node: air_quality | code: gst | fields: level, depth, lat, lon Sensor: pressure | fields: value, unit, depth, qc Task: Retrieve lat from air_quality with depth above the MIN(reading) of pressure readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073108
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: lon, ts, level, qc Sensor: evaporation | fields: lat, depth, type, qc Task: Fetch lat from wind_speed that have at least one corresponding evaporation measurement for 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_073109
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: lat, reading, level, depth Sensor: dew_point | fields: qc, unit, reading, lon Task: Fetch reading from cloud_cover where value is greater than the total of reading in dew_point for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073110
train
v3
Sensor network script: Node: sunlight | code: hub | fields: reading, unit, ts, lon Sensor: humidity | fields: type, depth, level, lon Task: Fetch value from sunlight where value is greater than the minimum of reading in humidity for matching depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073111
train
v1
Sensor network script: Node: uv_index | code: clr | fields: level, lon, type, depth Sensor: air_quality | fields: unit, lon, lat, level Task: Get reading from uv_index where qc appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073112
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: reading, qc, value, lon Sensor: snow_depth | fields: level, unit, type, qc Task: Fetch lat from soil_moisture that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073113
train
v1
Sensor network script: Node: humidity | code: clr | fields: reading, lat, level, unit Sensor: air_quality | fields: depth, level, reading, ts Task: Get lon from humidity where type appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073114
train
v2
Sensor network script: Node: rainfall | code: hub | fields: unit, lon, type, level Sensor: dew_point | fields: lat, depth, qc, type Task: Retrieve value from rainfall that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073115
train
v2
Sensor network script: Node: frost | code: clr | fields: reading, depth, unit, level Sensor: temperature | fields: type, unit, lon, qc Task: Retrieve depth from frost that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073116
train
v3
Sensor network script: Node: visibility | code: ref | fields: value, level, lon, depth Sensor: snow_depth | fields: lon, qc, reading, unit Task: Get lon from visibility where reading exceeds the minimum reading from snow_depth for the same depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073117
train
v3
Sensor network script: Node: evaporation | code: gst | fields: unit, ts, lon, reading Sensor: air_quality | fields: type, ts, unit, lat Task: Fetch lat from evaporation where value is greater than the minimum of value in air_quality for matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073118
train
v3
Sensor network script: Node: humidity | code: hub | fields: depth, level, ts, type Sensor: evaporation | fields: reading, qc, level, lat Task: Fetch depth from humidity where depth is greater than the count of of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073119
train
v3
Sensor network script: Node: pressure | code: mst | fields: reading, value, lon, level Sensor: humidity | fields: level, type, lat, ts Task: Get depth from pressure where value exceeds the total reading from humidity for the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073120
train
v1
Sensor network script: Node: lightning | code: hub | fields: reading, type, level, ts Sensor: evaporation | fields: depth, ts, lon, qc Task: Retrieve value from lightning whose unit is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073121
train
v3
Sensor network script: Node: uv_index | code: hub | fields: lat, ts, qc, value Sensor: snow_depth | fields: reading, depth, qc, lat Task: Fetch level from uv_index where value is greater than the total of depth in snow_depth for matching depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073122
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: value, level, lon, qc Sensor: air_quality | fields: type, lat, depth, reading Task: Fetch level from wind_speed where ts exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073123
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: qc, value, reading, depth Sensor: air_quality | fields: unit, lon, lat, value Task: Retrieve level from soil_moisture that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073124
train
v1
Sensor network script: Node: lightning | code: gst | fields: value, qc, type, ts Sensor: humidity | fields: level, value, ts, lon Task: Fetch level from lightning where ts exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073125
train
v1
Sensor network script: Node: evaporation | code: prt | fields: value, type, lon, qc Sensor: turbidity | fields: reading, qc, ts, unit Task: Fetch lon from evaporation where type exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073126
train
v1
Sensor network script: Node: uv_index | code: clr | fields: value, lat, depth, qc Sensor: drought_index | fields: ts, reading, type, level Task: Retrieve lat from uv_index whose ts is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073127
train
v3
Sensor network script: Node: air_quality | code: gst | fields: unit, value, type, reading Sensor: lightning | fields: qc, unit, level, reading Task: Get depth from air_quality where value exceeds the average value from lightning for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073128
train
v3
Sensor network script: Node: humidity | code: thr | fields: reading, lat, depth, ts Sensor: air_quality | fields: level, ts, qc, unit Task: Retrieve value from humidity with value above the SUM(reading) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073129
train
v2
Sensor network script: Node: air_quality | code: stn | fields: lon, ts, reading, unit Sensor: visibility | fields: depth, level, unit, reading Task: Get value from air_quality where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073130
train
v3
Sensor network script: Node: drought_index | code: stn | fields: lat, level, lon, reading Sensor: frost | fields: qc, unit, level, reading Task: Fetch depth from drought_index where value is greater than the minimum of depth in frost for matching type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "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_073131
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lat, reading, lon, unit Sensor: visibility | fields: unit, level, ts, type Task: Fetch depth from soil_moisture where ts exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073132
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: qc, type, value, lon Sensor: air_quality | fields: unit, lon, reading, lat Task: Retrieve level from soil_moisture with reading above the AVG(value) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073133
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lat, lon, depth, ts Sensor: temperature | fields: depth, reading, lon, value Task: Fetch lon from drought_index that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073134
train
v1
Sensor network script: Node: drought_index | code: hub | fields: value, level, depth, lat Sensor: rainfall | fields: qc, level, value, depth Task: Retrieve level from drought_index whose ts is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073135
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: level, ts, type, lat Sensor: air_quality | fields: lat, value, unit, reading Task: Fetch value from wind_speed where ts exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073136
train
v3
Sensor network script: Node: frost | code: hub | fields: level, reading, unit, qc Sensor: sunlight | fields: type, reading, level, lat Task: Get reading from frost where reading exceeds the minimum value from sunlight for the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073137
train
v2
Sensor network script: Node: rainfall | code: clr | fields: type, reading, unit, lon Sensor: wind_speed | fields: value, lon, lat, level Task: Retrieve value from rainfall that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073138
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: type, lon, qc, value Sensor: sunlight | fields: type, value, reading, depth Task: Get depth from snow_depth where type appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073139
train
v2
Sensor network script: Node: dew_point | code: mst | fields: lon, value, reading, qc Sensor: evaporation | fields: unit, type, lon, qc Task: Get lon from dew_point where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073140
train
v3
Sensor network script: Node: drought_index | code: mst | fields: unit, qc, lat, level Sensor: lightning | fields: value, reading, unit, level Task: Fetch depth from drought_index where value is greater than the maximum of reading in lightning for matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073141
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: qc, value, ts, level Sensor: uv_index | fields: lat, level, value, reading Task: Get level from wind_speed where value exceeds the maximum reading from uv_index for the same type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073142
train
v2
Sensor network script: Node: visibility | code: gst | fields: type, level, ts, depth Sensor: humidity | fields: type, unit, level, reading Task: Fetch depth from visibility that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073143
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: type, lon, lat, level Sensor: pressure | fields: reading, value, level, unit Task: Retrieve reading from wind_speed whose type is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073144
train
v1
Sensor network script: Node: air_quality | code: mst | fields: unit, lon, depth, reading Sensor: soil_moisture | fields: ts, level, type, depth Task: Retrieve value from air_quality whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073145
train
v3
Sensor network script: Node: sunlight | code: prt | fields: type, lat, unit, lon Sensor: soil_moisture | fields: qc, lat, level, unit Task: Retrieve value from sunlight with value above the MAX(reading) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073146
train
v1
Sensor network script: Node: visibility | code: thr | fields: unit, level, qc, lat Sensor: humidity | fields: value, unit, reading, ts Task: Fetch reading from visibility where type exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073147
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: unit, level, lat, depth Sensor: evaporation | fields: ts, unit, reading, lat Task: Fetch depth from cloud_cover where depth exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073148
train
v1
Sensor network script: Node: sunlight | code: gst | fields: reading, qc, value, lat Sensor: drought_index | fields: type, value, qc, lat Task: Retrieve value from sunlight whose unit is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073149
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: lon, type, qc, value Sensor: visibility | fields: lon, type, unit, reading Task: Fetch value from soil_moisture that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073150
train
v3
Sensor network script: Node: uv_index | code: prt | fields: reading, level, lat, ts Sensor: temperature | fields: lat, lon, level, qc Task: Retrieve depth from uv_index with depth above the AVG(depth) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073151
train
v3
Sensor network script: Node: sunlight | code: ref | fields: value, depth, unit, lon Sensor: evaporation | fields: unit, qc, value, reading Task: Get depth from sunlight where depth exceeds the total depth from evaporation for the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073152
train
v1
Sensor network script: Node: dew_point | code: thr | fields: reading, qc, lat, ts Sensor: air_quality | fields: type, lat, value, level Task: Retrieve depth from dew_point whose ts is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073153
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, lon, level, ts Sensor: lightning | fields: value, unit, depth, reading Task: Fetch value from air_quality where qc exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073154
train
v3
Sensor network script: Node: humidity | code: mst | fields: reading, qc, depth, unit Sensor: temperature | fields: qc, level, lon, lat Task: Fetch value from humidity where reading is greater than the maximum of value in temperature for matching depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073155
train
v1
Sensor network script: Node: visibility | code: prt | fields: reading, qc, type, lon Sensor: rainfall | fields: reading, qc, type, unit Task: Retrieve reading from visibility whose ts is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073156
train
v1
Sensor network script: Node: sunlight | code: ref | fields: depth, reading, level, unit Sensor: temperature | fields: level, type, lon, lat Task: Retrieve level from sunlight whose depth is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073157
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: ts, lat, depth, qc Sensor: frost | fields: lon, type, ts, unit Task: Fetch value from wind_speed where depth exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073158
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: level, lon, type, ts Sensor: temperature | fields: ts, reading, unit, depth Task: Fetch lat from snow_depth where value is greater than the maximum of depth in temperature for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073159
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: ts, depth, lon, unit Sensor: turbidity | fields: type, level, ts, qc Task: Get value from snow_depth where value exceeds the maximum value from turbidity for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073160
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: unit, level, qc, type Sensor: air_quality | fields: qc, value, depth, level Task: Retrieve value from soil_moisture that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073161
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: depth, value, ts, type Sensor: lightning | fields: unit, lat, value, level Task: Fetch reading from cloud_cover where depth is greater than the total of depth in lightning for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073162
train
v1
Sensor network script: Node: temperature | code: thr | fields: lon, value, depth, ts Sensor: cloud_cover | fields: ts, type, level, lon Task: Retrieve value from temperature whose ts is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073163
train
v2
Sensor network script: Node: temperature | code: hub | fields: qc, lat, level, lon Sensor: rainfall | fields: type, qc, unit, ts Task: Get value from temperature where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073164
train
v3
Sensor network script: Node: pressure | code: gst | fields: value, level, ts, lat Sensor: drought_index | fields: ts, unit, depth, qc Task: Retrieve level from pressure with reading above the MAX(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073165
train
v1
Sensor network script: Node: turbidity | code: clr | fields: reading, level, depth, type Sensor: drought_index | fields: type, unit, level, ts Task: Get depth from turbidity where depth appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073166
train
v3
Sensor network script: Node: pressure | code: mst | fields: reading, value, ts, qc Sensor: evaporation | fields: lat, qc, level, lon Task: Retrieve lon from pressure with value above the MAX(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073167
train
v1
Sensor network script: Node: drought_index | code: prt | fields: reading, lon, ts, value Sensor: visibility | fields: unit, type, depth, value Task: Fetch depth from drought_index where ts exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073168
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, value, depth, lat Sensor: turbidity | fields: lon, unit, qc, depth Task: Retrieve value from frost that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073169
train
v2
Sensor network script: Node: drought_index | code: hub | fields: lon, unit, reading, ts Sensor: visibility | fields: qc, level, ts, type Task: Fetch lat from drought_index that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073170
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: reading, unit, value, ts Sensor: turbidity | fields: type, lon, reading, unit Task: Get value from soil_moisture where depth appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073171
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lat, qc, value, ts Sensor: soil_moisture | fields: value, reading, lon, unit Task: Fetch value from snow_depth that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073172
train
v1
Sensor network script: Node: rainfall | code: hub | fields: depth, lat, lon, qc Sensor: frost | fields: type, unit, reading, lat Task: Retrieve value from rainfall whose depth is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073173
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: unit, ts, level, reading Sensor: rainfall | fields: value, depth, unit, qc Task: Fetch lon from soil_moisture that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073174
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: lon, lat, value, unit Sensor: uv_index | fields: type, level, value, depth Task: Get lat from cloud_cover where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073175
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: lat, ts, depth, lon Sensor: drought_index | fields: value, unit, reading, lat Task: Get depth from soil_moisture where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073176
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: reading, lat, ts, lon Sensor: dew_point | fields: qc, depth, type, lat Task: Fetch level from wind_speed where unit exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073177
train
v3
Sensor network script: Node: pressure | code: hub | fields: level, unit, depth, lat Sensor: rainfall | fields: qc, type, reading, ts Task: Fetch lat from pressure where depth is greater than the total of reading in rainfall for matching type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073178
train
v3
Sensor network script: Node: pressure | code: prt | fields: depth, type, unit, lon Sensor: evaporation | fields: qc, depth, level, lon Task: Fetch lat from pressure where reading is greater than the total of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073179
train
v2
Sensor network script: Node: rainfall | code: stn | fields: depth, value, ts, lon Sensor: visibility | fields: reading, type, value, unit Task: Get lat from rainfall where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073180
train
v1
Sensor network script: Node: rainfall | code: gst | fields: ts, unit, value, lon Sensor: frost | fields: lat, depth, qc, unit Task: Fetch depth from rainfall where qc exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073181
train
v2
Sensor network script: Node: dew_point | code: clr | fields: lat, level, depth, ts Sensor: wind_speed | fields: lon, depth, type, qc Task: Fetch reading from dew_point that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073182
train
v1
Sensor network script: Node: drought_index | code: clr | fields: unit, level, depth, lat Sensor: dew_point | fields: unit, lat, qc, reading Task: Fetch level from drought_index where depth exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073183
train
v2
Sensor network script: Node: lightning | code: ref | fields: lat, lon, depth, unit Sensor: humidity | fields: depth, qc, type, lat Task: Fetch reading from lightning that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073184
train
v3
Sensor network script: Node: frost | code: stn | fields: type, ts, value, depth Sensor: lightning | fields: level, ts, type, lat Task: Retrieve value from frost with value above the COUNT(value) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073185
train
v2
Sensor network script: Node: frost | code: stn | fields: depth, lat, lon, type Sensor: lightning | fields: level, unit, ts, depth Task: Retrieve lat from frost that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073186
train
v3
Sensor network script: Node: lightning | code: hub | fields: lon, unit, reading, lat Sensor: soil_moisture | fields: lon, level, unit, value Task: Fetch reading from lightning where reading is greater than the count of of reading in soil_moisture for matching depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073187
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: ts, value, level, reading Sensor: frost | fields: qc, level, lon, ts Task: Fetch depth from wind_speed where unit exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073188
train
v3
Sensor network script: Node: visibility | code: ref | fields: reading, type, value, depth Sensor: rainfall | fields: unit, type, lon, lat Task: Fetch depth from visibility where reading is greater than the minimum of value in rainfall for matching type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073189
train
v2
Sensor network script: Node: drought_index | code: ref | fields: reading, unit, depth, lat Sensor: cloud_cover | fields: lat, qc, value, ts Task: Get reading from drought_index where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073190
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, ts, lat, level Sensor: pressure | fields: reading, depth, lon, unit Task: Fetch lon from rainfall where depth is greater than the total of depth in pressure for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073191
train
v3
Sensor network script: Node: humidity | code: prt | fields: lat, reading, depth, type Sensor: turbidity | fields: reading, qc, ts, value Task: Get value from humidity where depth exceeds the minimum depth from turbidity for the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073192
train
v2
Sensor network script: Node: pressure | code: thr | fields: type, level, reading, value Sensor: evaporation | fields: value, reading, lat, unit Task: Get lat from pressure where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073193
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lat, qc, level, depth Sensor: rainfall | fields: unit, value, ts, type Task: Get reading from soil_moisture where depth appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073194
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, type, depth, level Sensor: temperature | fields: qc, reading, level, lon Task: Fetch depth from soil_moisture where value is greater than the minimum of reading in temperature for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073195
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: unit, type, reading, depth Sensor: temperature | fields: type, lon, qc, depth Task: Retrieve lat from soil_moisture that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073196
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, unit, level, reading Sensor: temperature | fields: value, qc, reading, lat Task: Fetch lon from rainfall where value is greater than the minimum of reading in temperature for matching depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073197
train
v2
Sensor network script: Node: frost | code: stn | fields: type, depth, value, level Sensor: dew_point | fields: qc, depth, unit, value Task: Fetch lat from frost that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_073198
train
v1
Sensor network script: Node: pressure | code: prt | fields: level, lat, lon, reading Sensor: temperature | fields: level, value, ts, depth Task: Retrieve depth from pressure whose qc is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_073199
train