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: humidity | code: mst | fields: ts, qc, unit, depth Sensor: dew_point | fields: unit, level, type, lon Task: Get depth from humidity where ts appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002100
train
v2
Sensor network script: Node: lightning | code: hub | fields: lat, value, ts, lon Sensor: uv_index | fields: ts, unit, lon, level Task: Fetch reading from lightning that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002101
train
v2
Sensor network script: Node: visibility | code: mst | fields: qc, reading, type, lon Sensor: sunlight | fields: level, lon, qc, lat Task: Retrieve depth from visibility that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002102
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: level, depth, type, reading Sensor: evaporation | fields: depth, qc, type, reading Task: Fetch lon from soil_moisture that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002103
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lon, qc, level, value Sensor: temperature | fields: value, qc, ts, type Task: Fetch lon from cloud_cover where depth exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002104
train
v1
Sensor network script: Node: temperature | code: mst | fields: lat, lon, unit, depth Sensor: air_quality | fields: lat, unit, lon, ts Task: Fetch reading from temperature where depth exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002105
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: depth, reading, unit, ts Sensor: pressure | fields: value, unit, lon, ts Task: Get lat from cloud_cover where depth exceeds the count of value from pressure for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002106
train
v1
Sensor network script: Node: temperature | code: mst | fields: lat, reading, qc, ts Sensor: air_quality | fields: value, unit, ts, qc Task: Get level from temperature where unit appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002107
train
v2
Sensor network script: Node: rainfall | code: mst | fields: lat, depth, type, lon Sensor: snow_depth | fields: qc, lon, unit, ts Task: Get level from rainfall where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002108
train
v3
Sensor network script: Node: turbidity | code: ref | fields: reading, level, lon, qc Sensor: rainfall | fields: ts, qc, depth, lon Task: Fetch lat from turbidity where value is greater than the total of depth in rainfall for matching type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002109
train
v3
Sensor network script: Node: temperature | code: mst | fields: ts, type, lat, qc Sensor: uv_index | fields: value, level, depth, reading Task: Retrieve depth from temperature with reading above the AVG(value) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002110
train
v2
Sensor network script: Node: evaporation | code: prt | fields: qc, lon, lat, type Sensor: soil_moisture | fields: value, level, qc, ts Task: Fetch value from evaporation that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002111
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: ts, reading, level, lat Sensor: evaporation | fields: type, reading, lat, qc Task: Retrieve lat from snow_depth with value above the AVG(reading) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002112
train
v1
Sensor network script: Node: temperature | code: thr | fields: qc, lat, lon, value Sensor: humidity | fields: lon, ts, depth, qc Task: Retrieve lon from temperature whose unit is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002113
train
v1
Sensor network script: Node: air_quality | code: mst | fields: reading, type, lat, lon Sensor: drought_index | fields: value, ts, unit, qc Task: Get lon from air_quality where ts appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002114
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: qc, depth, level, ts Sensor: drought_index | fields: ts, unit, type, level Task: Fetch level from snow_depth where depth is greater than the average of value in drought_index for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002115
train
v1
Sensor network script: Node: evaporation | code: clr | fields: qc, depth, type, level Sensor: snow_depth | fields: depth, qc, reading, lat Task: Fetch lon from evaporation where qc exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002116
train
v2
Sensor network script: Node: temperature | code: ref | fields: unit, value, depth, lon Sensor: wind_speed | fields: unit, lat, value, lon Task: Get depth from temperature where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002117
train
v1
Sensor network script: Node: pressure | code: stn | fields: type, unit, lat, depth Sensor: soil_moisture | fields: qc, ts, unit, depth Task: Get level from pressure where qc appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002118
train
v2
Sensor network script: Node: air_quality | code: prt | fields: qc, depth, ts, lon Sensor: drought_index | fields: unit, depth, type, qc Task: Get value from air_quality where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002119
train
v1
Sensor network script: Node: lightning | code: stn | fields: value, ts, level, reading Sensor: evaporation | fields: unit, type, lat, value Task: Fetch reading from lightning where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002120
train
v1
Sensor network script: Node: drought_index | code: clr | fields: type, reading, depth, ts Sensor: cloud_cover | fields: level, unit, reading, depth Task: Fetch lat from drought_index where unit exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002121
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lon, depth, type, level Sensor: frost | fields: ts, lon, type, value Task: Get lon from soil_moisture where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002122
train
v3
Sensor network script: Node: dew_point | code: gst | fields: lat, type, qc, unit Sensor: rainfall | fields: ts, type, unit, level Task: Fetch reading from dew_point where reading is greater than the average of reading in rainfall for matching ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002123
train
v1
Sensor network script: Node: pressure | code: mst | fields: type, depth, lat, qc Sensor: air_quality | fields: type, lat, unit, reading Task: Retrieve reading from pressure whose unit is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002124
train
v1
Sensor network script: Node: uv_index | code: mst | fields: ts, unit, reading, lon Sensor: air_quality | fields: lat, lon, ts, level Task: Retrieve depth from uv_index whose qc is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002125
train
v1
Sensor network script: Node: rainfall | code: mst | fields: lat, level, qc, unit Sensor: lightning | fields: level, qc, type, lon Task: Fetch level from rainfall where ts exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002126
train
v3
Sensor network script: Node: visibility | code: clr | fields: level, lat, type, value Sensor: temperature | fields: qc, type, lon, lat Task: Fetch level from visibility where depth is greater than the maximum of value in temperature for matching unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002127
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lon, level, ts, depth Sensor: drought_index | fields: depth, lon, qc, ts Task: Retrieve level from soil_moisture whose qc is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002128
train
v2
Sensor network script: Node: frost | code: mst | fields: value, unit, reading, depth Sensor: air_quality | fields: qc, value, reading, lon Task: Get level from frost where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002129
train
v3
Sensor network script: Node: temperature | code: clr | fields: reading, value, depth, level Sensor: uv_index | fields: value, qc, lat, reading Task: Get lon from temperature where depth exceeds the count of reading from uv_index for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002130
train
v1
Sensor network script: Node: rainfall | code: ref | fields: lat, depth, value, type Sensor: turbidity | fields: value, qc, type, reading Task: Fetch level from rainfall where unit exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002131
train
v3
Sensor network script: Node: temperature | code: hub | fields: reading, level, depth, qc Sensor: air_quality | fields: value, depth, type, unit Task: Fetch value from temperature where reading is greater than the average of value in air_quality for matching ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002132
train
v2
Sensor network script: Node: lightning | code: hub | fields: lon, ts, unit, value Sensor: drought_index | fields: lat, qc, value, ts Task: Retrieve value from lightning that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002133
train
v2
Sensor network script: Node: sunlight | code: clr | fields: depth, type, lon, level Sensor: frost | fields: level, type, value, lat Task: Retrieve lon from sunlight that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002134
train
v2
Sensor network script: Node: humidity | code: thr | fields: lon, qc, lat, value Sensor: cloud_cover | fields: value, type, ts, unit Task: Retrieve level from humidity that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002135
train
v2
Sensor network script: Node: visibility | code: stn | fields: ts, reading, lat, unit Sensor: pressure | fields: depth, value, qc, lat Task: Get depth from visibility where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002136
train
v2
Sensor network script: Node: humidity | code: clr | fields: type, value, lon, level Sensor: uv_index | fields: depth, ts, reading, unit Task: Get value from humidity where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002137
train
v2
Sensor network script: Node: air_quality | code: mst | fields: depth, value, lon, unit Sensor: pressure | fields: level, depth, lat, reading Task: Retrieve value from air_quality that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002138
train
v1
Sensor network script: Node: uv_index | code: mst | fields: level, lon, type, lat Sensor: evaporation | fields: level, reading, lon, unit Task: Fetch reading from uv_index where ts exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002139
train
v1
Sensor network script: Node: evaporation | code: gst | fields: level, reading, depth, lat Sensor: lightning | fields: type, lon, value, depth Task: Fetch depth from evaporation where ts exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002140
train
v1
Sensor network script: Node: drought_index | code: clr | fields: depth, unit, reading, level Sensor: rainfall | fields: lon, reading, ts, qc Task: Retrieve level from drought_index whose ts is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002141
train
v3
Sensor network script: Node: frost | code: thr | fields: unit, reading, lat, qc Sensor: turbidity | fields: lon, reading, qc, value Task: Get value from frost where value exceeds the minimum reading from turbidity for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002142
train
v3
Sensor network script: Node: frost | code: mst | fields: lon, level, qc, unit Sensor: evaporation | fields: qc, value, lon, ts Task: Fetch reading from frost where depth is greater than the average of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002143
train
v2
Sensor network script: Node: lightning | code: ref | fields: qc, ts, reading, lon Sensor: air_quality | fields: depth, type, ts, lon Task: Retrieve value from lightning that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002144
train
v1
Sensor network script: Node: frost | code: gst | fields: qc, unit, lat, ts Sensor: rainfall | fields: unit, level, reading, value Task: Retrieve value from frost whose type is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002145
train
v2
Sensor network script: Node: sunlight | code: stn | fields: ts, reading, lat, lon Sensor: dew_point | fields: lat, unit, ts, lon Task: Retrieve depth from sunlight that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002146
train
v1
Sensor network script: Node: sunlight | code: hub | fields: lat, level, ts, qc Sensor: uv_index | fields: unit, value, level, lon Task: Retrieve level from sunlight whose qc is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002147
train
v3
Sensor network script: Node: rainfall | code: ref | fields: ts, lat, level, unit Sensor: turbidity | fields: lat, lon, reading, unit Task: Fetch depth from rainfall where depth is greater than the count of of depth in turbidity for matching qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002148
train
v2
Sensor network script: Node: dew_point | code: ref | fields: depth, lon, reading, qc Sensor: frost | fields: lon, type, lat, unit Task: Fetch value from dew_point that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002149
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: reading, unit, lat, level Sensor: soil_moisture | fields: reading, value, lon, type Task: Retrieve depth from wind_speed with reading above the AVG(reading) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002150
train
v2
Sensor network script: Node: frost | code: hub | fields: lat, unit, ts, value Sensor: snow_depth | fields: type, depth, level, lat Task: Get lon from frost where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002151
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, depth, ts, type Sensor: humidity | fields: reading, type, lon, value Task: Fetch value from visibility that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002152
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: qc, type, depth, lat Sensor: soil_moisture | fields: value, unit, lat, level Task: Get lat from cloud_cover where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002153
train
v1
Sensor network script: Node: pressure | code: clr | fields: level, reading, type, qc Sensor: soil_moisture | fields: level, reading, lat, depth Task: Retrieve value from pressure whose depth is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002154
train
v3
Sensor network script: Node: pressure | code: thr | fields: type, lon, value, depth Sensor: evaporation | fields: depth, qc, ts, lat Task: Get level from pressure where depth exceeds the maximum reading from evaporation for the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002155
train
v2
Sensor network script: Node: sunlight | code: clr | fields: ts, lon, qc, depth Sensor: humidity | fields: lat, ts, qc, lon Task: Fetch level from sunlight that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002156
train
v1
Sensor network script: Node: uv_index | code: thr | fields: ts, unit, reading, qc Sensor: air_quality | fields: value, ts, type, level Task: Retrieve value from uv_index whose depth is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002157
train
v3
Sensor network script: Node: air_quality | code: hub | fields: reading, ts, level, depth Sensor: soil_moisture | fields: depth, reading, ts, level Task: Fetch value from air_quality where value is greater than the total of reading in soil_moisture for matching ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002158
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: type, ts, level, reading Sensor: pressure | fields: type, lon, qc, depth Task: Get depth from cloud_cover where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002159
train
v3
Sensor network script: Node: air_quality | code: prt | fields: lat, lon, reading, unit Sensor: uv_index | fields: unit, value, lat, reading Task: Retrieve lat from air_quality with value above the AVG(reading) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002160
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: level, depth, unit, ts Sensor: rainfall | fields: lon, qc, type, depth Task: Retrieve lon from soil_moisture with reading above the SUM(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002161
train
v3
Sensor network script: Node: dew_point | code: prt | fields: qc, value, unit, depth Sensor: uv_index | fields: unit, lon, qc, reading Task: Get reading from dew_point where depth exceeds the maximum depth from uv_index for the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002162
train
v3
Sensor network script: Node: lightning | code: stn | fields: type, value, qc, depth Sensor: snow_depth | fields: reading, unit, lon, qc Task: Fetch lat from lightning where reading is greater than the maximum of depth in snow_depth for matching type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002163
train
v1
Sensor network script: Node: temperature | code: prt | fields: lon, unit, reading, qc Sensor: wind_speed | fields: depth, unit, qc, ts Task: Get level from temperature where qc appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002164
train
v2
Sensor network script: Node: frost | code: stn | fields: depth, value, type, lon Sensor: wind_speed | fields: depth, level, lon, unit Task: Retrieve level from frost that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002165
train
v2
Sensor network script: Node: turbidity | code: prt | fields: type, value, ts, qc Sensor: drought_index | fields: qc, lat, lon, ts Task: Fetch lat from turbidity that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002166
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: reading, unit, ts, lon Sensor: evaporation | fields: reading, level, ts, depth Task: Fetch lat from soil_moisture that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002167
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: ts, qc, lon, value Sensor: drought_index | fields: qc, unit, level, lon Task: Get value from cloud_cover where reading exceeds the total depth from drought_index for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002168
train
v2
Sensor network script: Node: lightning | code: stn | fields: lon, depth, level, type Sensor: frost | fields: unit, level, depth, reading Task: Get lat from lightning where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002169
train
v3
Sensor network script: Node: lightning | code: hub | fields: value, reading, level, qc Sensor: turbidity | fields: ts, value, lat, level Task: Fetch reading from lightning where depth is greater than the minimum of depth in turbidity for matching qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002170
train
v3
Sensor network script: Node: dew_point | code: ref | fields: qc, value, depth, level Sensor: sunlight | fields: level, lat, qc, unit Task: Get value from dew_point where depth exceeds the maximum reading from sunlight for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002171
train
v3
Sensor network script: Node: dew_point | code: prt | fields: level, depth, type, value Sensor: sunlight | fields: lon, depth, type, value Task: Retrieve lat from dew_point with value above the MIN(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002172
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: qc, depth, value, level Sensor: humidity | fields: level, depth, qc, type Task: Fetch depth from snow_depth where ts exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002173
train
v3
Sensor network script: Node: air_quality | code: hub | fields: ts, lon, value, lat Sensor: humidity | fields: type, lat, ts, qc Task: Get lon from air_quality where reading exceeds the average depth from humidity for the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002174
train
v2
Sensor network script: Node: pressure | code: gst | fields: value, unit, qc, level Sensor: cloud_cover | fields: unit, lat, qc, reading Task: Fetch lat from pressure that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002175
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: value, lon, reading, lat Sensor: air_quality | fields: value, reading, qc, unit Task: Get lat from cloud_cover where value exceeds the maximum value from air_quality for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002176
train
v3
Sensor network script: Node: temperature | code: hub | fields: qc, value, level, depth Sensor: cloud_cover | fields: unit, value, qc, level Task: Get lat from temperature where value exceeds the total depth from cloud_cover for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "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_002177
train
v2
Sensor network script: Node: drought_index | code: thr | fields: level, reading, qc, unit Sensor: rainfall | fields: level, type, unit, reading Task: Fetch value from drought_index that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002178
train
v1
Sensor network script: Node: drought_index | code: hub | fields: level, unit, depth, lat Sensor: visibility | fields: lon, ts, value, depth Task: Retrieve level from drought_index whose unit is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002179
train
v1
Sensor network script: Node: evaporation | code: ref | fields: lon, type, ts, lat Sensor: wind_speed | fields: lon, value, type, qc Task: Fetch reading from evaporation where qc exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002180
train
v2
Sensor network script: Node: sunlight | code: thr | fields: depth, type, ts, value Sensor: lightning | fields: lat, lon, level, reading Task: Get level from sunlight where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002181
train
v2
Sensor network script: Node: frost | code: hub | fields: reading, ts, value, type Sensor: rainfall | fields: level, lon, value, qc Task: Retrieve reading from frost that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002182
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: lon, ts, type, lat Sensor: turbidity | fields: reading, type, qc, lon Task: Fetch level from snow_depth where qc exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002183
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lon, ts, lat, unit Sensor: sunlight | fields: unit, value, lat, level Task: Fetch lon from snow_depth that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002184
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: unit, reading, value, ts Sensor: rainfall | fields: ts, reading, lat, unit Task: Fetch lat from snow_depth where type exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002185
train
v3
Sensor network script: Node: sunlight | code: ref | fields: ts, type, value, depth Sensor: frost | fields: qc, depth, lon, lat Task: Get lon from sunlight where value exceeds the maximum reading from frost for the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002186
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: reading, lat, lon, level Sensor: dew_point | fields: reading, level, unit, ts Task: Get reading from soil_moisture where depth appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002187
train
v3
Sensor network script: Node: drought_index | code: hub | fields: reading, depth, type, ts Sensor: temperature | fields: depth, level, ts, unit Task: Fetch value from drought_index where depth is greater than the maximum of reading in temperature for matching ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002188
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: unit, lat, depth, reading Sensor: wind_speed | fields: depth, lon, reading, qc Task: Retrieve depth from snow_depth with depth above the MIN(depth) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002189
train
v1
Sensor network script: Node: temperature | code: thr | fields: lat, value, ts, type Sensor: uv_index | fields: qc, reading, type, depth Task: Fetch value from temperature where type exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002190
train
v3
Sensor network script: Node: rainfall | code: hub | fields: level, lon, unit, ts Sensor: pressure | fields: reading, qc, value, level Task: Fetch level from rainfall where value is greater than the count of of reading in pressure for matching depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002191
train
v1
Sensor network script: Node: dew_point | code: thr | fields: value, lat, type, depth Sensor: humidity | fields: lat, level, type, lon Task: Fetch level from dew_point where unit exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002192
train
v2
Sensor network script: Node: turbidity | code: ref | fields: level, qc, reading, depth Sensor: drought_index | fields: reading, ts, level, depth Task: Get depth from turbidity where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002193
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: value, qc, reading, ts Sensor: pressure | fields: level, depth, type, unit Task: Fetch lat from cloud_cover where type exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002194
train
v2
Sensor network script: Node: evaporation | code: stn | fields: value, lon, ts, unit Sensor: temperature | fields: value, qc, reading, lon Task: Get reading from evaporation where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002195
train
v3
Sensor network script: Node: temperature | code: stn | fields: depth, type, unit, lat Sensor: sunlight | fields: qc, value, ts, level Task: Fetch level from temperature where depth is greater than the average of reading in sunlight for matching qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002196
train
v3
Sensor network script: Node: pressure | code: gst | fields: qc, value, depth, ts Sensor: lightning | fields: lat, depth, reading, ts Task: Fetch level from pressure where reading is greater than the maximum of depth in lightning for matching ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002197
train
v1
Sensor network script: Node: lightning | code: prt | fields: qc, level, type, lat Sensor: soil_moisture | fields: qc, type, ts, depth Task: Fetch depth from lightning where unit exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002198
train
v3
Sensor network script: Node: sunlight | code: gst | fields: level, reading, unit, type Sensor: temperature | fields: ts, reading, value, lat Task: Retrieve lat from sunlight with depth above the COUNT(reading) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002199
train