variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: temperature | code: mst | fields: depth, ts, unit, type Sensor: turbidity | fields: value, lat, depth, qc Task: Fetch lat from temperature that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074100
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: type, lat, ts, value Sensor: uv_index | fields: lat, lon, value, unit Task: Get lon from cloud_cover where value exceeds the average reading from uv_index for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074101
train
v2
Sensor network script: Node: turbidity | code: clr | fields: level, type, reading, lon Sensor: drought_index | fields: depth, lon, level, value Task: Get lat from turbidity where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074102
train
v2
Sensor network script: Node: lightning | code: clr | fields: reading, qc, type, depth Sensor: cloud_cover | fields: qc, reading, type, unit Task: Get level from lightning where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074103
train
v3
Sensor network script: Node: visibility | code: gst | fields: depth, ts, type, lat Sensor: uv_index | fields: depth, ts, unit, level Task: Retrieve value from visibility with reading above the AVG(depth) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074104
train
v3
Sensor network script: Node: frost | code: thr | fields: level, reading, lon, type Sensor: dew_point | fields: reading, lat, unit, value Task: Fetch lat from frost where reading is greater than the count of of depth in dew_point for matching type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074105
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, level, lon, lat Sensor: temperature | fields: unit, value, type, lat Task: Fetch reading from visibility where type exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074106
train
v1
Sensor network script: Node: frost | code: thr | fields: value, unit, lon, ts Sensor: humidity | fields: type, unit, value, depth Task: Retrieve level from frost whose type is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074107
train
v2
Sensor network script: Node: dew_point | code: hub | fields: depth, unit, lon, lat Sensor: temperature | fields: depth, unit, lon, ts Task: Retrieve level from dew_point that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074108
train
v2
Sensor network script: Node: visibility | code: thr | fields: value, reading, type, ts Sensor: dew_point | fields: ts, type, depth, qc Task: Retrieve reading from visibility that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074109
train
v2
Sensor network script: Node: frost | code: hub | fields: type, lat, depth, qc Sensor: visibility | fields: qc, reading, ts, unit Task: Fetch depth from frost that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074110
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: ts, lat, reading, lon Sensor: uv_index | fields: ts, depth, unit, level Task: Fetch depth from cloud_cover where reading is greater than the maximum of value in uv_index for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074111
train
v2
Sensor network script: Node: humidity | code: mst | fields: type, depth, qc, level Sensor: uv_index | fields: reading, type, qc, depth Task: Fetch lon from humidity that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074112
train
v3
Sensor network script: Node: pressure | code: prt | fields: value, reading, lat, level Sensor: snow_depth | fields: depth, type, qc, reading Task: Get level from pressure where reading exceeds the minimum value from snow_depth for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074113
train
v2
Sensor network script: Node: sunlight | code: thr | fields: depth, qc, reading, lon Sensor: snow_depth | fields: depth, lat, level, unit Task: Retrieve lat from sunlight that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074114
train
v3
Sensor network script: Node: lightning | code: mst | fields: value, unit, type, lon Sensor: visibility | fields: level, qc, reading, type Task: Fetch lat from lightning where reading is greater than the average of value in visibility for matching depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074115
train
v1
Sensor network script: Node: evaporation | code: mst | fields: lon, type, ts, value Sensor: uv_index | fields: qc, lon, depth, ts Task: Get depth from evaporation where type appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074116
train
v3
Sensor network script: Node: visibility | code: stn | fields: reading, lat, qc, level Sensor: dew_point | fields: level, depth, ts, value Task: Fetch depth from visibility where value is greater than the minimum of depth in dew_point for matching depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074117
train
v1
Sensor network script: Node: sunlight | code: gst | fields: lat, lon, depth, value Sensor: temperature | fields: type, value, depth, unit Task: Get reading from sunlight where unit appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074118
train
v3
Sensor network script: Node: sunlight | code: clr | fields: value, depth, ts, lon Sensor: snow_depth | fields: unit, level, lat, qc Task: Retrieve reading from sunlight with value above the SUM(depth) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074119
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: level, lat, unit, type Sensor: lightning | fields: unit, reading, lat, depth Task: Get depth from wind_speed where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074120
train
v1
Sensor network script: Node: dew_point | code: ref | fields: type, reading, value, lat Sensor: pressure | fields: lat, unit, qc, reading Task: Retrieve lat from dew_point whose ts is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074121
train
v2
Sensor network script: Node: visibility | code: clr | fields: depth, lon, qc, type Sensor: air_quality | fields: type, depth, lat, lon Task: Fetch reading from visibility that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074122
train
v2
Sensor network script: Node: pressure | code: thr | fields: lat, level, ts, reading Sensor: wind_speed | fields: qc, ts, level, depth Task: Get depth from pressure where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074123
train
v2
Sensor network script: Node: air_quality | code: thr | fields: level, qc, unit, lon Sensor: rainfall | fields: type, ts, reading, depth Task: Get value from air_quality where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074124
train
v2
Sensor network script: Node: evaporation | code: thr | fields: unit, value, level, ts Sensor: air_quality | fields: type, reading, lon, lat Task: Fetch depth from evaporation that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074125
train
v3
Sensor network script: Node: temperature | code: mst | fields: level, depth, lon, value Sensor: soil_moisture | fields: ts, qc, lat, unit Task: Retrieve lat from temperature with reading above the SUM(value) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074126
train
v1
Sensor network script: Node: turbidity | code: thr | fields: value, unit, lat, lon Sensor: air_quality | fields: ts, depth, level, qc Task: Get reading from turbidity where ts appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074127
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: value, reading, lon, level Sensor: air_quality | fields: value, level, lat, reading Task: Get value from cloud_cover where qc appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074128
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: lat, unit, lon, type Sensor: air_quality | fields: lat, qc, depth, lon Task: Get lon from soil_moisture where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074129
train
v3
Sensor network script: Node: evaporation | code: thr | fields: unit, level, type, value Sensor: pressure | fields: level, lat, unit, reading Task: Fetch value from evaporation where value is greater than the total of value in pressure for matching qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074130
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: type, lat, unit, reading Sensor: turbidity | fields: type, qc, reading, lon Task: Fetch level from cloud_cover where type exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074131
train
v2
Sensor network script: Node: sunlight | code: thr | fields: lat, unit, type, depth Sensor: pressure | fields: value, unit, lon, ts Task: Retrieve depth from sunlight that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074132
train
v3
Sensor network script: Node: lightning | code: thr | fields: value, unit, reading, lat Sensor: turbidity | fields: unit, lat, ts, qc Task: Retrieve lon from lightning with value above the COUNT(reading) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074133
train
v3
Sensor network script: Node: sunlight | code: thr | fields: value, unit, type, reading Sensor: turbidity | fields: type, reading, qc, unit Task: Get depth from sunlight where value exceeds the total reading from turbidity for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074134
train
v2
Sensor network script: Node: pressure | code: mst | fields: lon, level, ts, type Sensor: soil_moisture | fields: lon, type, lat, unit Task: Retrieve lat from pressure that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074135
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: unit, ts, level, lon Sensor: uv_index | fields: value, unit, lat, level Task: Fetch lat from snow_depth that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074136
train
v3
Sensor network script: Node: uv_index | code: clr | fields: level, lon, type, unit Sensor: dew_point | fields: type, ts, reading, lat Task: Get value from uv_index where depth exceeds the maximum value from dew_point for the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074137
train
v3
Sensor network script: Node: temperature | code: mst | fields: qc, unit, level, value Sensor: sunlight | fields: lat, value, qc, unit Task: Fetch lon from temperature where reading is greater than the total of value in sunlight for matching type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074138
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: qc, type, level, unit Sensor: pressure | fields: lon, qc, level, lat Task: Get lat from wind_speed where ts appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074139
train
v1
Sensor network script: Node: drought_index | code: thr | fields: depth, level, reading, ts Sensor: uv_index | fields: value, depth, reading, unit Task: Retrieve lon from drought_index whose depth is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074140
train
v1
Sensor network script: Node: dew_point | code: ref | fields: level, qc, depth, ts Sensor: snow_depth | fields: lat, value, type, level Task: Retrieve lat from dew_point whose depth is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074141
train
v3
Sensor network script: Node: air_quality | code: prt | fields: lon, lat, unit, qc Sensor: cloud_cover | fields: type, reading, lat, depth Task: Retrieve depth from air_quality with reading above the AVG(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "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_074142
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: reading, type, lat, ts Sensor: turbidity | fields: ts, reading, lat, depth Task: Retrieve reading from soil_moisture that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074143
train
v1
Sensor network script: Node: lightning | code: hub | fields: lat, level, ts, reading Sensor: humidity | fields: level, lon, ts, lat Task: Fetch depth from lightning where depth exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074144
train
v3
Sensor network script: Node: turbidity | code: hub | fields: qc, value, type, reading Sensor: frost | fields: depth, ts, type, unit Task: Get depth from turbidity where reading exceeds the count of depth from frost for the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074145
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: lon, unit, reading, qc Sensor: dew_point | fields: lon, reading, lat, type Task: Fetch value from cloud_cover where reading is greater than the total of value in dew_point for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074146
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lat, ts, unit, level Sensor: soil_moisture | fields: reading, depth, ts, level Task: Get lon from snow_depth where depth exceeds the minimum reading from soil_moisture for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074147
train
v2
Sensor network script: Node: visibility | code: clr | fields: depth, level, lat, ts Sensor: evaporation | fields: qc, level, value, depth Task: Retrieve reading from visibility that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074148
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, reading, lat, unit Sensor: wind_speed | fields: unit, type, level, depth Task: Get reading from snow_depth where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074149
train
v2
Sensor network script: Node: pressure | code: hub | fields: unit, level, qc, lat Sensor: sunlight | fields: lon, depth, qc, type Task: Retrieve level from pressure that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074150
train
v2
Sensor network script: Node: air_quality | code: stn | fields: value, qc, depth, level Sensor: evaporation | fields: depth, reading, lon, lat Task: Get lat from air_quality where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074151
train
v3
Sensor network script: Node: uv_index | code: ref | fields: unit, ts, type, level Sensor: visibility | fields: depth, ts, value, lon Task: Get lon from uv_index where depth exceeds the minimum reading from visibility for the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074152
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: unit, lon, ts, lat Sensor: visibility | fields: reading, unit, qc, level Task: Get lat from wind_speed where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074153
train
v2
Sensor network script: Node: lightning | code: stn | fields: lon, unit, lat, reading Sensor: rainfall | fields: reading, depth, level, lon Task: Fetch lon from lightning that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074154
train
v2
Sensor network script: Node: humidity | code: prt | fields: type, level, lon, qc Sensor: uv_index | fields: value, depth, level, lat Task: Get depth from humidity where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074155
train
v1
Sensor network script: Node: pressure | code: stn | fields: level, lon, value, depth Sensor: temperature | fields: depth, ts, lat, lon Task: Get value from pressure where type appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074156
train
v1
Sensor network script: Node: lightning | code: thr | fields: lat, value, lon, level Sensor: sunlight | fields: ts, unit, value, lat Task: Get lat from lightning where ts appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074157
train
v2
Sensor network script: Node: dew_point | code: gst | fields: depth, value, level, unit Sensor: visibility | fields: reading, unit, level, type Task: Get lat from dew_point where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074158
train
v2
Sensor network script: Node: lightning | code: thr | fields: reading, level, qc, type Sensor: snow_depth | fields: level, unit, lon, type Task: Fetch reading from lightning that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074159
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: reading, type, value, unit Sensor: dew_point | fields: level, type, lat, lon Task: Fetch depth from soil_moisture where qc exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074160
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: ts, qc, reading, level Sensor: drought_index | fields: value, ts, type, unit Task: Fetch lon from soil_moisture where value is greater than the count of of reading in drought_index for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074161
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: type, lat, qc, unit Sensor: uv_index | fields: value, type, lat, reading Task: Retrieve lat from cloud_cover with reading above the AVG(depth) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074162
train
v3
Sensor network script: Node: drought_index | code: hub | fields: value, type, lat, reading Sensor: turbidity | fields: lon, value, reading, qc Task: Retrieve lat from drought_index with value above the AVG(reading) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074163
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, lat, level, ts Sensor: humidity | fields: value, type, lon, lat Task: Get depth from sunlight where qc appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074164
train
v3
Sensor network script: Node: pressure | code: stn | fields: lon, reading, unit, level Sensor: evaporation | fields: type, qc, reading, lat Task: Retrieve lon from pressure with reading above the MIN(value) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074165
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: type, value, unit, qc Sensor: pressure | fields: lat, qc, depth, lon Task: Fetch depth from cloud_cover where depth is greater than the total of depth in pressure for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074166
train
v3
Sensor network script: Node: pressure | code: hub | fields: type, value, qc, reading Sensor: rainfall | fields: ts, level, type, lon Task: Retrieve lon from pressure with reading above the MIN(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074167
train
v1
Sensor network script: Node: uv_index | code: ref | fields: unit, depth, lon, reading Sensor: turbidity | fields: reading, lat, depth, type Task: Retrieve depth from uv_index whose type is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074168
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, reading, value, lat Sensor: air_quality | fields: level, lat, qc, reading Task: Retrieve level from lightning with reading above the SUM(depth) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074169
train
v2
Sensor network script: Node: frost | code: thr | fields: qc, lon, type, level Sensor: drought_index | fields: level, lat, qc, type Task: Get reading from frost where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074170
train
v2
Sensor network script: Node: visibility | code: stn | fields: ts, unit, level, reading Sensor: lightning | fields: value, type, lon, unit Task: Fetch level from visibility that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074171
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: ts, level, qc, unit Sensor: sunlight | fields: reading, lon, type, level Task: Fetch depth from snow_depth where depth is greater than the total of value in sunlight for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074172
train
v3
Sensor network script: Node: humidity | code: mst | fields: unit, ts, reading, depth Sensor: cloud_cover | fields: level, type, lat, unit Task: Get level from humidity where depth exceeds the average value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074173
train
v3
Sensor network script: Node: lightning | code: clr | fields: unit, lon, lat, qc Sensor: uv_index | fields: unit, level, ts, value Task: Retrieve value from lightning with value above the MAX(depth) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074174
train
v3
Sensor network script: Node: visibility | code: clr | fields: qc, ts, level, value Sensor: air_quality | fields: lon, ts, level, reading Task: Fetch depth from visibility where value is greater than the average of reading in air_quality for matching ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074175
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: unit, type, depth, value Sensor: drought_index | fields: reading, depth, qc, lat Task: Get lat from snow_depth where type appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074176
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: value, lat, unit, qc Sensor: pressure | fields: type, unit, lat, qc Task: Get lon from snow_depth where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074177
train
v3
Sensor network script: Node: drought_index | code: thr | fields: qc, type, lon, ts Sensor: uv_index | fields: level, depth, lon, qc Task: Fetch value from drought_index where depth is greater than the average of reading in uv_index for matching type. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074178
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: qc, depth, value, reading Sensor: rainfall | fields: level, unit, depth, ts Task: Retrieve value from snow_depth with reading above the MIN(depth) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074179
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lat, level, ts, unit Sensor: visibility | fields: value, type, ts, reading Task: Get depth from snow_depth where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074180
train
v3
Sensor network script: Node: dew_point | code: thr | fields: level, lon, type, depth Sensor: air_quality | fields: ts, unit, qc, value Task: Get level from dew_point where depth exceeds the average value from air_quality for the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074181
train
v1
Sensor network script: Node: uv_index | code: thr | fields: lon, level, qc, ts Sensor: turbidity | fields: value, ts, reading, level Task: Get reading from uv_index where ts appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074182
train
v1
Sensor network script: Node: air_quality | code: thr | fields: reading, type, lat, value Sensor: soil_moisture | fields: depth, type, unit, ts Task: Retrieve level from air_quality whose qc is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074183
train
v2
Sensor network script: Node: sunlight | code: thr | fields: depth, reading, qc, lon Sensor: evaporation | fields: value, depth, unit, level Task: Fetch value from sunlight that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074184
train
v3
Sensor network script: Node: lightning | code: ref | fields: ts, depth, lon, reading Sensor: air_quality | fields: lat, level, lon, reading Task: Retrieve lat from lightning with depth above the MIN(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074185
train
v1
Sensor network script: Node: air_quality | code: ref | fields: qc, ts, unit, reading Sensor: temperature | fields: value, reading, lon, level Task: Retrieve lon from air_quality whose qc is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074186
train
v2
Sensor network script: Node: visibility | code: gst | fields: depth, type, reading, level Sensor: sunlight | fields: value, level, unit, type Task: Get lat from visibility where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074187
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: type, reading, unit, value Sensor: soil_moisture | fields: reading, type, value, ts Task: Retrieve depth from wind_speed whose depth is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074188
train
v1
Sensor network script: Node: sunlight | code: thr | fields: unit, value, reading, type Sensor: rainfall | fields: level, depth, value, lon Task: Get reading from sunlight where ts appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074189
train
v3
Sensor network script: Node: evaporation | code: clr | fields: type, qc, level, value Sensor: lightning | fields: depth, level, qc, reading Task: Get level from evaporation where depth exceeds the minimum reading from lightning for the same unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074190
train
v2
Sensor network script: Node: drought_index | code: stn | fields: lat, unit, reading, depth Sensor: cloud_cover | fields: type, value, depth, reading Task: Retrieve reading from drought_index that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074191
train
v1
Sensor network script: Node: lightning | code: gst | fields: qc, lon, value, depth Sensor: drought_index | fields: qc, reading, value, unit Task: Get lat from lightning where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074192
train
v1
Sensor network script: Node: rainfall | code: clr | fields: depth, ts, qc, type Sensor: drought_index | fields: reading, ts, unit, value Task: Retrieve depth from rainfall whose qc is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074193
train
v1
Sensor network script: Node: evaporation | code: thr | fields: ts, depth, lon, type Sensor: cloud_cover | fields: lon, unit, reading, lat Task: Retrieve lat from evaporation whose type is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074194
train
v3
Sensor network script: Node: frost | code: thr | fields: qc, depth, reading, unit Sensor: wind_speed | fields: lon, type, qc, depth Task: Get depth from frost where depth exceeds the count of depth from wind_speed for the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074195
train
v2
Sensor network script: Node: humidity | code: hub | fields: lon, depth, ts, unit Sensor: dew_point | fields: unit, value, qc, lat Task: Fetch reading from humidity that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074196
train
v2
Sensor network script: Node: air_quality | code: stn | fields: depth, lat, qc, type Sensor: lightning | fields: value, qc, ts, unit Task: Fetch lat from air_quality that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074197
train
v1
Sensor network script: Node: frost | code: ref | fields: value, reading, depth, type Sensor: visibility | fields: ts, unit, lat, qc Task: Get value from frost where qc appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074198
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: lat, reading, depth, ts Sensor: uv_index | fields: lat, lon, value, type Task: Fetch lon from cloud_cover where value is greater than the average of value in uv_index for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074199
train