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: sunlight | code: stn | fields: lon, ts, reading, type
Sensor: visibility | fields: qc, lat, value, ts
Task: Retrieve depth from sunlight that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075400 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: lon, value, lat, qc
Sensor: drought_index | fields: lat, ts, reading, qc
Task: Fetch value from temperature where depth exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075401 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: qc, ts, depth, level
Sensor: dew_point | fields: ts, reading, qc, level
Task: Retrieve lat from wind_speed that have at least one matching reading in dew_point sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075402 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: type, ts, depth, qc
Sensor: frost | fields: lat, lon, depth, reading
Task: Retrieve reading from cloud_cover whose ts is found in frost records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075403 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: level, ts, lat, reading
Sensor: cloud_cover | fields: type, reading, unit, qc
Task: Retrieve value from wind_speed whose depth is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075404 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: type, qc, depth, lon
Sensor: wind_speed | fields: depth, type, unit, qc
Task: Retrieve depth from air_quality that have at least one matching reading in wind_speed sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075405 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: qc, depth, unit, lat
Sensor: dew_point | fields: type, value, level, qc
Task: Fetch level from visibility where depth is greater than the count of of value in dew_point for matching unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075406 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: depth, ts, lon, unit
Sensor: temperature | fields: level, value, reading, lon
Task: Fetch depth from visibility where unit exists in temperature sensor data for the same type.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="type",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075407 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: depth, type, value, qc
Sensor: frost | fields: qc, unit, ts, lat
Task: Fetch level from uv_index where value is greater than the total of reading in frost for matching depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075408 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: lon, reading, lat, qc
Sensor: lightning | fields: lat, qc, depth, lon
Task: Fetch level from dew_point where reading is greater than the minimum of value in lightning for matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075409 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: lat, ts, qc, lon
Sensor: sunlight | fields: value, depth, lon, qc
Task: Fetch depth from cloud_cover where qc exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075410 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: level, type, lat, qc
Sensor: uv_index | fields: unit, level, qc, reading
Task: Retrieve lon from humidity with depth above the AVG(depth) of uv_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075411 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: depth, level, type, unit
Sensor: temperature | fields: qc, depth, lat, ts
Task: Get lon from visibility where a corresponding entry exists in temperature with the same type.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075412 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: type, depth, lat, lon
Sensor: humidity | fields: depth, type, level, lon
Task: Get lat from lightning where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075413 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: type, ts, reading, unit
Sensor: sunlight | fields: unit, ts, level, reading
Task: Fetch lat from lightning where value is greater than the maximum of depth in sunlight for matching depth.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075414 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: depth, value, level, type
Sensor: uv_index | fields: lat, value, lon, level
Task: Retrieve depth from air_quality that have at least one matching reading in uv_index sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075415 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: type, value, depth, lat
Sensor: soil_moisture | fields: reading, ts, qc, unit
Task: Get reading from sunlight where a corresponding entry exists in soil_moisture with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075416 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: type, depth, lat, value
Sensor: lightning | fields: type, level, depth, lat
Task: Fetch lat from uv_index where reading is greater than the average of depth in lightning for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075417 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: ts, depth, lon, lat
Sensor: sunlight | fields: value, lon, type, unit
Task: Fetch value from lightning where qc exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075418 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: unit, qc, level, depth
Sensor: visibility | fields: unit, lat, qc, reading
Task: Fetch value from rainfall that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075419 | train |
v3 | Sensor network script:
Node: visibility | code: clr | fields: type, qc, unit, ts
Sensor: wind_speed | fields: lon, ts, level, lat
Task: Retrieve lon from visibility with value above the MIN(depth) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075420 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: reading, ts, type, depth
Sensor: drought_index | fields: unit, depth, reading, lat
Task: Get value from cloud_cover where value exceeds the average depth from drought_index for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075421 | train |
v3 | Sensor network script:
Node: soil_moisture | code: clr | fields: unit, lon, lat, level
Sensor: wind_speed | fields: unit, value, qc, type
Task: Retrieve level from soil_moisture with value above the MIN(depth) of wind_speed readings sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075422 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: ts, lon, type, lat
Sensor: rainfall | fields: depth, level, lon, type
Task: Fetch level from evaporation where depth is greater than the total of reading in rainfall for matching type.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075423 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: lat, type, reading, ts
Sensor: lightning | fields: type, lat, reading, level
Task: Fetch reading from snow_depth where value is greater than the count of of depth in lightning for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075424 | train |
v3 | Sensor network script:
Node: dew_point | code: mst | fields: value, depth, lon, level
Sensor: lightning | fields: unit, qc, type, value
Task: Fetch lon from dew_point where value is greater than the maximum of reading in lightning for matching ts.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075425 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: lon, type, unit, qc
Sensor: humidity | fields: lon, reading, ts, qc
Task: Retrieve value from dew_point that have at least one matching reading in humidity sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075426 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: qc, reading, depth, ts
Sensor: drought_index | fields: qc, ts, type, level
Task: Fetch reading from wind_speed where depth exists in drought_index sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075427 | train |
v3 | Sensor network script:
Node: visibility | code: clr | fields: value, lat, unit, qc
Sensor: rainfall | fields: level, qc, depth, lat
Task: Fetch value from visibility where reading is greater than the total of reading in rainfall for matching depth.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075428 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: qc, unit, depth, reading
Sensor: snow_depth | fields: lat, type, reading, lon
Task: Fetch depth from frost where value is greater than the total of reading in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075429 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: value, type, level, reading
Sensor: uv_index | fields: reading, type, lat, value
Task: Get lat from pressure where depth appears in uv_index readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075430 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: ts, level, qc, lon
Sensor: turbidity | fields: unit, lon, depth, ts
Task: Retrieve lat from wind_speed with reading above the MIN(value) of turbidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075431 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: lat, value, level, unit
Sensor: sunlight | fields: qc, ts, reading, lat
Task: Get reading from dew_point where reading exceeds the average depth from sunlight for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075432 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: level, reading, value, lon
Sensor: visibility | fields: lat, qc, depth, level
Task: Retrieve reading from drought_index whose unit is found in visibility records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075433 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: lon, qc, value, reading
Sensor: dew_point | fields: lat, ts, level, value
Task: Fetch lon from uv_index where qc exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075434 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: depth, lat, ts, qc
Sensor: humidity | fields: unit, value, lat, reading
Task: Get lat from lightning where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075435 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: lon, depth, qc, type
Sensor: temperature | fields: value, level, reading, type
Task: Retrieve lon from drought_index whose depth is found in temperature records where qc matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075436 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: depth, lat, reading, ts
Sensor: humidity | fields: value, unit, lon, lat
Task: Fetch reading from pressure where depth is greater than the count of of depth in humidity for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075437 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: value, type, reading, lon
Sensor: drought_index | fields: lon, lat, type, ts
Task: Retrieve lon from humidity whose unit is found in drought_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075438 | train |
v3 | Sensor network script:
Node: soil_moisture | code: stn | fields: unit, lat, level, type
Sensor: sunlight | fields: value, ts, level, type
Task: Get lat from soil_moisture where reading exceeds the minimum value from sunlight for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075439 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: value, reading, level, depth
Sensor: wind_speed | fields: lon, lat, depth, unit
Task: Get lat from frost where ts appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075440 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: lat, type, depth, qc
Sensor: evaporation | fields: lat, lon, reading, unit
Task: Fetch lat from snow_depth where ts exists in evaporation sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075441 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: lat, unit, type, ts
Sensor: snow_depth | fields: reading, level, lon, value
Task: Fetch lat from cloud_cover where depth is greater than the average of reading in snow_depth for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075442 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, qc, unit, lat
Sensor: soil_moisture | fields: unit, reading, level, lon
Task: Fetch level from wind_speed that have at least one corresponding soil_moisture measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075443 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: lon, lat, ts, unit
Sensor: soil_moisture | fields: depth, unit, value, lat
Task: Retrieve lat from turbidity whose unit is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075444 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: level, depth, reading, ts
Sensor: pressure | fields: qc, unit, lon, value
Task: Fetch level from air_quality that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075445 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: reading, ts, lon, level
Sensor: air_quality | fields: unit, level, type, value
Task: Fetch value from rainfall that have at least one corresponding air_quality measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075446 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: reading, ts, lon, qc
Sensor: humidity | fields: qc, type, depth, unit
Task: Get depth from drought_index where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075447 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: qc, reading, unit, lon
Sensor: evaporation | fields: qc, unit, value, depth
Task: Fetch depth from snow_depth where unit exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075448 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: depth, lon, type, qc
Sensor: sunlight | fields: ts, reading, depth, lon
Task: Get reading from visibility where depth exceeds the average depth from sunlight for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075449 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: qc, ts, value, unit
Sensor: temperature | fields: qc, value, level, reading
Task: Retrieve depth from lightning that have at least one matching reading in temperature sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075450 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: lat, type, value, ts
Sensor: turbidity | fields: level, lat, value, lon
Task: Fetch lat from cloud_cover where reading is greater than the average of value in turbidity for matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075451 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: value, qc, level, unit
Sensor: temperature | fields: level, lon, type, ts
Task: Fetch value from uv_index where type exists in temperature sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="depth",
),
output="value",
) | {
"outer_table": "uv_index",
"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_075452 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: reading, value, qc, level
Sensor: frost | fields: value, lat, level, ts
Task: Fetch lon from drought_index that have at least one corresponding frost measurement for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075453 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: type, lon, reading, depth
Sensor: humidity | fields: qc, type, lon, depth
Task: Fetch value from soil_moisture that have at least one corresponding humidity measurement for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075454 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: ts, depth, qc, lon
Sensor: evaporation | fields: type, qc, reading, lat
Task: Fetch value from air_quality that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075455 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: unit, reading, ts, level
Sensor: frost | fields: type, value, reading, level
Task: Get reading from rainfall where value exceeds the maximum value from frost for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="type"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075456 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: ts, value, type, depth
Sensor: visibility | fields: lat, ts, value, qc
Task: Fetch level from drought_index that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075457 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: qc, ts, unit, depth
Sensor: temperature | fields: lat, reading, depth, value
Task: Retrieve lon from visibility whose type is found in temperature records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075458 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: depth, level, qc, unit
Sensor: rainfall | fields: lat, reading, qc, lon
Task: Retrieve value from pressure with reading above the COUNT(value) of rainfall readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075459 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: unit, reading, level, value
Sensor: evaporation | fields: level, lat, unit, reading
Task: Fetch level from drought_index where value is greater than the maximum of reading in evaporation for matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075460 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: lat, level, ts, lon
Sensor: evaporation | fields: unit, qc, value, lon
Task: Retrieve lat from wind_speed whose qc is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075461 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: lon, unit, reading, value
Sensor: evaporation | fields: ts, qc, lat, depth
Task: Fetch lon from soil_moisture that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075462 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: lat, qc, level, reading
Sensor: cloud_cover | fields: ts, reading, unit, value
Task: Retrieve reading from air_quality with reading above the MAX(value) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075463 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: value, qc, lat, depth
Sensor: visibility | fields: value, level, lat, lon
Task: Fetch lon from turbidity that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075464 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: unit, value, depth, ts
Sensor: frost | fields: reading, lon, level, depth
Task: Get reading from temperature where a corresponding entry exists in frost with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075465 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: value, lat, type, lon
Sensor: temperature | fields: reading, lat, type, unit
Task: Retrieve depth from rainfall with depth above the COUNT(value) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("temperature", code="thr"),
match="type"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075466 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: value, level, ts, unit
Sensor: lightning | fields: value, reading, ts, type
Task: Fetch lon from visibility where unit exists in lightning sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075467 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: qc, unit, reading, lon
Sensor: air_quality | fields: lon, depth, value, reading
Task: Fetch reading from rainfall where unit exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075468 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: level, ts, depth, reading
Sensor: air_quality | fields: depth, ts, unit, lat
Task: Fetch depth from frost where depth exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075469 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: qc, depth, type, lat
Sensor: lightning | fields: unit, qc, type, reading
Task: Retrieve depth from rainfall whose qc is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075470 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: lon, ts, depth, lat
Sensor: dew_point | fields: value, unit, lon, level
Task: Fetch lat from snow_depth where unit exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075471 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: lon, reading, value, lat
Sensor: snow_depth | fields: lon, value, reading, qc
Task: Fetch reading from pressure where depth is greater than the maximum of value in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075472 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: value, depth, qc, lat
Sensor: turbidity | fields: lat, value, level, ts
Task: Retrieve value from lightning with value above the COUNT(depth) of turbidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075473 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: reading, depth, lat, type
Sensor: dew_point | fields: type, level, lon, lat
Task: Fetch value from cloud_cover that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075474 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: value, type, ts, level
Sensor: rainfall | fields: qc, ts, lat, value
Task: Fetch value from uv_index where depth is greater than the count of of value in rainfall for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075475 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: depth, level, value, lat
Sensor: temperature | fields: lon, type, qc, ts
Task: Get lat from air_quality where type appears in temperature readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="unit",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075476 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: qc, type, depth, value
Sensor: temperature | fields: type, lat, lon, level
Task: Get lat from pressure where depth appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="qc",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075477 | train |
v2 | Sensor network script:
Node: wind_speed | code: ref | fields: level, lat, type, lon
Sensor: snow_depth | fields: value, depth, ts, level
Task: Get lon from wind_speed where a corresponding entry exists in snow_depth with the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075478 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: qc, lat, unit, type
Sensor: temperature | fields: value, type, reading, depth
Task: Retrieve depth from drought_index whose qc is found in temperature records where depth matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075479 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: qc, type, ts, reading
Sensor: visibility | fields: qc, lat, level, ts
Task: Fetch reading from frost where depth is greater than the average of reading in visibility for matching unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075480 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: unit, type, value, depth
Sensor: temperature | fields: lat, level, qc, reading
Task: Fetch level from uv_index that have at least one corresponding temperature measurement for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075481 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: value, lon, depth, qc
Sensor: cloud_cover | fields: ts, qc, lon, value
Task: Retrieve value from rainfall whose unit is found in cloud_cover records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075482 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: depth, unit, value, lon
Sensor: frost | fields: ts, depth, type, qc
Task: Retrieve reading from air_quality with depth above the SUM(value) of frost readings sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("frost", code="frs"),
match="qc"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075483 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: lon, type, ts, value
Sensor: humidity | fields: qc, depth, unit, lon
Task: Retrieve lat from frost with value above the MIN(depth) of humidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075484 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: qc, level, unit, type
Sensor: cloud_cover | fields: lon, type, depth, reading
Task: Fetch lat from rainfall that have at least one corresponding cloud_cover measurement for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075485 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: ts, lat, lon, reading
Sensor: cloud_cover | fields: lat, lon, reading, depth
Task: Get lat from soil_moisture where unit appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075486 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: level, depth, reading, ts
Sensor: soil_moisture | fields: unit, lat, value, level
Task: Retrieve lon from frost with reading above the AVG(depth) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075487 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: unit, ts, type, depth
Sensor: sunlight | fields: level, value, lat, depth
Task: Retrieve reading from evaporation that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075488 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: level, lat, reading, ts
Sensor: frost | fields: value, level, ts, type
Task: Retrieve lat from visibility with reading above the SUM(depth) of frost readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075489 | train |
v1 | Sensor network script:
Node: frost | code: stn | fields: type, level, depth, qc
Sensor: sunlight | fields: qc, ts, depth, unit
Task: Fetch lat from frost where ts exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075490 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: level, type, ts, qc
Sensor: cloud_cover | fields: lat, depth, lon, reading
Task: Get reading from lightning where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075491 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: qc, lat, depth, lon
Sensor: pressure | fields: lat, lon, level, depth
Task: Retrieve lat from sunlight with value above the MAX(value) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075492 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: level, type, lat, depth
Sensor: uv_index | fields: lon, ts, lat, type
Task: Get lat from visibility where depth appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075493 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: reading, ts, value, lat
Sensor: humidity | fields: qc, type, lon, reading
Task: Retrieve value from wind_speed with value above the SUM(depth) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075494 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: reading, ts, qc, lon
Sensor: frost | fields: type, reading, ts, qc
Task: Get lat from cloud_cover where depth appears in frost readings with matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="qc",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075495 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: value, unit, level, lat
Sensor: sunlight | fields: type, ts, qc, lat
Task: Fetch value from lightning where value is greater than the maximum of depth in sunlight for matching qc.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075496 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: qc, type, lon, lat
Sensor: lightning | fields: lon, ts, depth, reading
Task: Get value from evaporation where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075497 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: level, ts, lat, unit
Sensor: visibility | fields: lat, value, level, unit
Task: Retrieve reading from snow_depth with depth above the MAX(value) of visibility readings sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075498 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: qc, reading, type, value
Sensor: visibility | fields: lat, lon, level, depth
Task: Get lon from evaporation where a corresponding entry exists in visibility with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.