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: wind_speed | code: mst | fields: unit, level, reading, lon Sensor: dew_point | fields: reading, value, lon, qc Task: Fetch reading from wind_speed where ts exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065200
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: lon, unit, depth, qc Sensor: temperature | fields: depth, level, ts, lat Task: Fetch lon from snow_depth where qc exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065201
train
v3
Sensor network script: Node: dew_point | code: hub | fields: value, level, lat, ts Sensor: visibility | fields: reading, unit, qc, depth Task: Get lon from dew_point where reading exceeds the count of value from visibility for the same qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065202
train
v3
Sensor network script: Node: rainfall | code: clr | fields: level, type, unit, value Sensor: snow_depth | fields: qc, unit, level, lat Task: Get level from rainfall where value exceeds the count of depth from snow_depth for the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065203
train
v1
Sensor network script: Node: temperature | code: stn | fields: unit, type, qc, ts Sensor: visibility | fields: lon, depth, reading, ts Task: Retrieve lat from temperature whose depth is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065204
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: ts, value, qc, unit Sensor: snow_depth | fields: lat, level, value, lon Task: Retrieve lat from wind_speed whose qc is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065205
train
v1
Sensor network script: Node: pressure | code: prt | fields: type, lon, qc, level Sensor: uv_index | fields: level, qc, type, depth Task: Retrieve depth from pressure whose type is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065206
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: lon, reading, value, lat Sensor: frost | fields: lon, unit, ts, qc Task: Get lat from snow_depth where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065207
train
v2
Sensor network script: Node: dew_point | code: hub | fields: lat, lon, value, unit Sensor: turbidity | fields: level, type, depth, lon Task: Fetch value from dew_point that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065208
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: qc, lon, reading, value Sensor: cloud_cover | fields: type, depth, ts, value Task: Retrieve lon from wind_speed with depth above the AVG(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065209
train
v1
Sensor network script: Node: visibility | code: prt | fields: type, lon, depth, lat Sensor: wind_speed | fields: level, qc, type, value Task: Retrieve lat from visibility whose type is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065210
train
v3
Sensor network script: Node: rainfall | code: ref | fields: type, lat, unit, value Sensor: cloud_cover | fields: lat, reading, type, ts Task: Get value from rainfall where value exceeds the average depth from cloud_cover for the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065211
train
v1
Sensor network script: Node: uv_index | code: mst | fields: depth, qc, reading, ts Sensor: wind_speed | fields: type, reading, value, level Task: Fetch level from uv_index where depth exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065212
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lat, level, type, unit Sensor: frost | fields: lat, qc, level, depth Task: Get level from air_quality where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065213
train
v2
Sensor network script: Node: drought_index | code: gst | fields: depth, reading, type, level Sensor: turbidity | fields: ts, lat, type, value Task: Fetch lon from drought_index that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065214
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, value, qc, lon Sensor: humidity | fields: type, unit, value, lat Task: Fetch value from air_quality where type exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065215
train
v3
Sensor network script: Node: sunlight | code: mst | fields: reading, level, lon, lat Sensor: frost | fields: depth, type, reading, value Task: Get reading from sunlight where reading exceeds the total reading from frost for the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065216
train
v2
Sensor network script: Node: frost | code: stn | fields: reading, qc, level, lat Sensor: humidity | fields: unit, value, lat, ts Task: Retrieve lon from frost that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065217
train
v1
Sensor network script: Node: temperature | code: mst | fields: ts, lat, type, reading Sensor: turbidity | fields: unit, type, reading, depth Task: Retrieve reading from temperature whose ts is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065218
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: ts, depth, level, lon Sensor: frost | fields: value, depth, type, lat Task: Retrieve value from snow_depth with depth above the AVG(value) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065219
train
v1
Sensor network script: Node: humidity | code: clr | fields: value, qc, lat, level Sensor: lightning | fields: level, unit, lat, qc Task: Retrieve lon from humidity whose depth is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065220
train
v1
Sensor network script: Node: sunlight | code: prt | fields: qc, level, ts, lon Sensor: wind_speed | fields: type, lon, ts, value Task: Retrieve lon from sunlight whose ts is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065221
train
v1
Sensor network script: Node: dew_point | code: prt | fields: qc, ts, level, type Sensor: wind_speed | fields: level, type, value, depth Task: Fetch level from dew_point where depth exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065222
train
v1
Sensor network script: Node: pressure | code: hub | fields: depth, value, type, lat Sensor: uv_index | fields: ts, type, unit, value Task: Retrieve depth from pressure whose ts is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065223
train
v3
Sensor network script: Node: drought_index | code: hub | fields: lat, reading, depth, unit Sensor: humidity | fields: level, ts, depth, lon Task: Retrieve lat from drought_index with depth above the AVG(value) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065224
train
v2
Sensor network script: Node: rainfall | code: clr | fields: ts, qc, depth, reading Sensor: humidity | fields: level, ts, type, depth Task: Retrieve level from rainfall that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065225
train
v2
Sensor network script: Node: rainfall | code: thr | fields: value, lat, unit, ts Sensor: cloud_cover | fields: value, level, depth, reading Task: Retrieve depth from rainfall that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065226
train
v2
Sensor network script: Node: turbidity | code: prt | fields: qc, ts, value, level Sensor: frost | fields: level, lat, unit, lon Task: Fetch value from turbidity that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065227
train
v2
Sensor network script: Node: rainfall | code: thr | fields: value, lat, ts, unit Sensor: drought_index | fields: reading, lat, lon, type Task: Get reading from rainfall where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065228
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lat, lon, type, qc Sensor: uv_index | fields: type, value, qc, lon Task: Get lat from rainfall where value exceeds the average value from uv_index for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065229
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: unit, level, value, depth Sensor: soil_moisture | fields: depth, lat, type, reading Task: Retrieve depth from cloud_cover whose type is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065230
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: value, type, level, lat Sensor: lightning | fields: reading, lat, level, value Task: Fetch lon from cloud_cover that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065231
train
v2
Sensor network script: Node: humidity | code: stn | fields: lon, reading, ts, type Sensor: turbidity | fields: lon, reading, unit, ts Task: Get reading from humidity where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065232
train
v1
Sensor network script: Node: lightning | code: ref | fields: unit, ts, qc, lon Sensor: uv_index | fields: value, reading, qc, depth Task: Retrieve lat from lightning whose qc is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065233
train
v1
Sensor network script: Node: drought_index | code: ref | fields: depth, value, lat, type Sensor: temperature | fields: ts, lat, depth, value Task: Get depth from drought_index where type appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065234
train
v2
Sensor network script: Node: pressure | code: prt | fields: depth, lon, level, value Sensor: rainfall | fields: value, lat, depth, reading Task: Retrieve depth from pressure that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065235
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: qc, reading, depth, lat Sensor: wind_speed | fields: type, ts, lat, depth Task: Get level from soil_moisture where unit appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065236
train
v3
Sensor network script: Node: drought_index | code: ref | fields: value, type, lat, reading Sensor: dew_point | fields: lat, depth, reading, level Task: Retrieve depth from drought_index with depth above the AVG(value) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065237
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: reading, depth, ts, lon Sensor: soil_moisture | fields: reading, lon, value, qc Task: Get reading from cloud_cover where ts appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065238
train
v1
Sensor network script: Node: sunlight | code: clr | fields: value, ts, level, qc Sensor: humidity | fields: depth, qc, level, lon Task: Get depth from sunlight where depth appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065239
train
v1
Sensor network script: Node: humidity | code: mst | fields: qc, type, lat, depth Sensor: uv_index | fields: reading, level, ts, lat Task: Retrieve lon from humidity whose qc is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065240
train
v2
Sensor network script: Node: rainfall | code: prt | fields: unit, lat, ts, reading Sensor: evaporation | fields: level, reading, ts, unit Task: Fetch depth from rainfall that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065241
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lon, ts, type, depth Sensor: lightning | fields: lat, depth, lon, ts Task: Retrieve value from air_quality whose type is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065242
train
v2
Sensor network script: Node: frost | code: prt | fields: reading, unit, depth, ts Sensor: rainfall | fields: lon, ts, reading, type Task: Retrieve depth from frost that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065243
train
v1
Sensor network script: Node: sunlight | code: stn | fields: unit, depth, type, reading Sensor: snow_depth | fields: qc, level, ts, depth Task: Fetch lon from sunlight where qc exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065244
train
v3
Sensor network script: Node: evaporation | code: ref | fields: type, lon, ts, qc Sensor: visibility | fields: lat, depth, level, unit Task: Get depth from evaporation where value exceeds the minimum reading from visibility for the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065245
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: value, depth, reading, ts Sensor: turbidity | fields: lon, type, qc, reading Task: Fetch level from wind_speed that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065246
train
v2
Sensor network script: Node: evaporation | code: gst | fields: lat, depth, type, ts Sensor: dew_point | fields: value, unit, level, lon Task: Retrieve value from evaporation that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065247
train
v1
Sensor network script: Node: visibility | code: stn | fields: lon, lat, type, unit Sensor: humidity | fields: qc, lon, unit, lat Task: Retrieve lat from visibility whose unit is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065248
train
v1
Sensor network script: Node: rainfall | code: prt | fields: level, reading, type, depth Sensor: temperature | fields: lon, reading, type, ts Task: Retrieve reading from rainfall whose qc is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065249
train
v3
Sensor network script: Node: visibility | code: thr | fields: level, lat, reading, value Sensor: drought_index | fields: unit, reading, ts, qc Task: Get reading from visibility where value exceeds the total depth from drought_index for the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065250
train
v3
Sensor network script: Node: lightning | code: ref | fields: qc, depth, reading, lat Sensor: frost | fields: reading, depth, type, qc Task: Get depth from lightning where value exceeds the total value from frost for the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065251
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: depth, lat, ts, qc Sensor: humidity | fields: value, reading, depth, type Task: Get level from soil_moisture where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065252
train
v2
Sensor network script: Node: uv_index | code: thr | fields: lon, qc, lat, reading Sensor: evaporation | fields: qc, unit, value, type Task: Retrieve reading from uv_index that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065253
train
v3
Sensor network script: Node: sunlight | code: prt | fields: type, qc, lat, level Sensor: dew_point | fields: type, qc, depth, unit Task: Fetch lat from sunlight where depth is greater than the average of depth in dew_point for matching depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065254
train
v2
Sensor network script: Node: uv_index | code: hub | fields: unit, lat, lon, reading Sensor: soil_moisture | fields: reading, depth, ts, lat Task: Get value from uv_index where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065255
train
v1
Sensor network script: Node: humidity | code: hub | fields: level, value, lon, lat Sensor: temperature | fields: type, depth, ts, reading Task: Fetch level from humidity where ts exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065256
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: level, unit, value, reading Sensor: snow_depth | fields: unit, value, level, depth Task: Retrieve level from cloud_cover with depth above the AVG(reading) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065257
train
v3
Sensor network script: Node: rainfall | code: ref | fields: reading, lon, ts, type Sensor: evaporation | fields: level, reading, lon, lat Task: Retrieve level from rainfall with reading above the SUM(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065258
train
v1
Sensor network script: Node: drought_index | code: ref | fields: type, qc, value, lon Sensor: evaporation | fields: type, unit, lon, ts Task: Retrieve reading from drought_index whose unit is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065259
train
v3
Sensor network script: Node: humidity | code: ref | fields: lat, type, lon, value Sensor: air_quality | fields: ts, value, lat, qc Task: Fetch reading from humidity where reading is greater than the average of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065260
train
v1
Sensor network script: Node: turbidity | code: clr | fields: type, ts, value, reading Sensor: temperature | fields: unit, level, ts, qc Task: Fetch depth from turbidity where ts exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065261
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lat, lon, value, qc Sensor: uv_index | fields: type, lon, depth, value Task: Get depth from wind_speed where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065262
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: reading, level, qc, unit Sensor: lightning | fields: ts, value, depth, qc Task: Get lat from cloud_cover where qc appears in lightning readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065263
train
v1
Sensor network script: Node: air_quality | code: stn | fields: lon, type, depth, level Sensor: dew_point | fields: level, lon, unit, depth Task: Get level from air_quality where ts appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065264
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, type, unit, level Sensor: cloud_cover | fields: lon, level, lat, type Task: Get level from visibility where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065265
train
v2
Sensor network script: Node: dew_point | code: clr | fields: depth, level, value, ts Sensor: turbidity | fields: level, unit, reading, depth Task: Get depth from dew_point where a corresponding entry exists in turbidity with the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065266
train
v2
Sensor network script: Node: visibility | code: ref | fields: unit, ts, reading, type Sensor: rainfall | fields: level, qc, lat, type Task: Get level from visibility where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065267
train
v1
Sensor network script: Node: humidity | code: ref | fields: level, lon, qc, type Sensor: pressure | fields: lat, reading, depth, ts Task: Retrieve value from humidity whose depth is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065268
train
v3
Sensor network script: Node: sunlight | code: prt | fields: depth, lon, level, unit Sensor: snow_depth | fields: value, depth, ts, type Task: Retrieve value from sunlight with reading above the MAX(depth) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065269
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: value, qc, unit, ts Sensor: frost | fields: reading, type, ts, depth Task: Get level from snow_depth where depth appears in frost readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065270
train
v3
Sensor network script: Node: temperature | code: mst | fields: depth, qc, level, reading Sensor: humidity | fields: reading, unit, depth, type Task: Get depth from temperature where depth exceeds the count of value from humidity for the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065271
train
v1
Sensor network script: Node: air_quality | code: mst | fields: type, depth, ts, unit Sensor: rainfall | fields: type, qc, value, depth Task: Retrieve depth from air_quality whose ts is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065272
train
v2
Sensor network script: Node: turbidity | code: clr | fields: reading, lat, ts, level Sensor: rainfall | fields: ts, value, level, lat Task: Retrieve reading from turbidity that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065273
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: type, qc, lat, depth Sensor: air_quality | fields: type, reading, value, ts Task: Retrieve reading from wind_speed with value above the COUNT(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065274
train
v3
Sensor network script: Node: evaporation | code: stn | fields: type, lat, value, lon Sensor: wind_speed | fields: depth, level, reading, ts Task: Fetch lat from evaporation where depth is greater than the total of value in wind_speed for matching qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065275
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: ts, depth, reading, level Sensor: pressure | fields: qc, reading, type, depth Task: Get depth from wind_speed where depth exceeds the average reading from pressure for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065276
train
v3
Sensor network script: Node: uv_index | code: gst | fields: qc, unit, lon, level Sensor: sunlight | fields: ts, value, qc, level Task: Fetch depth from uv_index where value is greater than the count of of reading in sunlight for matching depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065277
train
v3
Sensor network script: Node: rainfall | code: ref | fields: reading, lat, ts, depth Sensor: uv_index | fields: depth, lon, unit, ts Task: Retrieve depth from rainfall with value above the AVG(depth) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065278
train
v3
Sensor network script: Node: visibility | code: ref | fields: ts, depth, reading, value Sensor: evaporation | fields: value, ts, depth, type Task: Retrieve depth from visibility with reading above the MIN(depth) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065279
train
v2
Sensor network script: Node: uv_index | code: gst | fields: type, depth, qc, level Sensor: evaporation | fields: depth, lat, ts, reading Task: Retrieve reading from uv_index that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065280
train
v3
Sensor network script: Node: temperature | code: hub | fields: value, reading, depth, level Sensor: evaporation | fields: ts, reading, value, lat Task: Get lon from temperature where depth exceeds the minimum value from evaporation for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065281
train
v3
Sensor network script: Node: pressure | code: ref | fields: type, level, lat, reading Sensor: humidity | fields: type, lon, unit, reading Task: Get lon from pressure where depth exceeds the maximum reading from humidity for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065282
train
v1
Sensor network script: Node: rainfall | code: stn | fields: value, reading, type, level Sensor: turbidity | fields: qc, ts, lat, type Task: Retrieve value from rainfall whose unit is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065283
train
v2
Sensor network script: Node: frost | code: thr | fields: value, lon, unit, level Sensor: lightning | fields: level, depth, reading, lon Task: Fetch lat from frost that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065284
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: ts, value, type, level Sensor: uv_index | fields: reading, value, type, depth Task: Get depth from wind_speed where qc appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065285
train
v2
Sensor network script: Node: dew_point | code: mst | fields: unit, ts, qc, reading Sensor: turbidity | fields: qc, ts, value, depth Task: Get level from dew_point where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065286
train
v2
Sensor network script: Node: air_quality | code: hub | fields: depth, reading, qc, lat Sensor: lightning | fields: value, reading, qc, type Task: Get value from air_quality where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065287
train
v1
Sensor network script: Node: evaporation | code: gst | fields: reading, ts, type, lat Sensor: sunlight | fields: depth, ts, unit, level Task: Get level from evaporation where unit appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065288
train
v1
Sensor network script: Node: drought_index | code: prt | fields: level, type, unit, qc Sensor: pressure | fields: lat, unit, ts, lon Task: Retrieve lon from drought_index whose ts is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065289
train
v2
Sensor network script: Node: drought_index | code: stn | fields: type, lon, ts, qc Sensor: uv_index | fields: level, lon, type, lat Task: Get depth from drought_index where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065290
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: qc, level, depth, value Sensor: snow_depth | fields: lon, qc, ts, depth Task: Get value from wind_speed where type appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065291
train
v3
Sensor network script: Node: dew_point | code: stn | fields: level, qc, reading, lat Sensor: pressure | fields: type, value, depth, lon Task: Retrieve lon from dew_point with reading above the SUM(depth) of pressure readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065292
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: unit, qc, lon, ts Sensor: visibility | fields: lon, unit, ts, depth Task: Retrieve lat from snow_depth that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "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_065293
train
v1
Sensor network script: Node: frost | code: clr | fields: depth, level, type, lon Sensor: cloud_cover | fields: unit, depth, lon, qc Task: Get reading from frost where depth appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065294
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: value, unit, lat, depth Sensor: rainfall | fields: reading, lon, type, ts Task: Get level from soil_moisture where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065295
train
v1
Sensor network script: Node: air_quality | code: thr | fields: level, lat, reading, lon Sensor: turbidity | fields: lat, lon, unit, level Task: Retrieve depth from air_quality whose unit is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065296
train
v1
Sensor network script: Node: dew_point | code: mst | fields: depth, level, value, unit Sensor: rainfall | fields: value, depth, type, reading Task: Get lon from dew_point where qc appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065297
train
v2
Sensor network script: Node: turbidity | code: thr | fields: type, reading, level, unit Sensor: uv_index | fields: value, level, type, ts Task: Get lat from turbidity where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065298
train
v2
Sensor network script: Node: humidity | code: prt | fields: reading, value, qc, level Sensor: frost | fields: depth, reading, type, lon Task: Fetch value from humidity that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065299
train