variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: evaporation | code: ref | fields: depth, unit, type, ts
Sensor: frost | fields: lat, reading, type, lon
Task: Fetch reading from evaporation where unit exists in frost sensor data for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="ts",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070600 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: reading, ts, type, depth
Sensor: air_quality | fields: depth, lat, reading, lon
Task: Get lat from soil_moisture where a corresponding entry exists in air_quality with the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070601 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: value, reading, level, qc
Sensor: humidity | fields: reading, unit, lon, depth
Task: Get level from air_quality where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070602 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: level, value, reading, ts
Sensor: turbidity | fields: level, unit, depth, type
Task: Fetch level from pressure where ts exists in turbidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070603 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: type, value, ts, reading
Sensor: rainfall | fields: value, lat, unit, lon
Task: Fetch level from cloud_cover where depth exists in rainfall sensor data for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070604 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: unit, type, level, value
Sensor: lightning | fields: unit, value, qc, reading
Task: Retrieve lon from humidity whose ts is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070605 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: lat, value, ts, qc
Sensor: dew_point | fields: ts, unit, lon, reading
Task: Retrieve reading from soil_moisture that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070606 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: value, ts, lat, unit
Sensor: cloud_cover | fields: level, qc, lon, reading
Task: Retrieve depth from humidity whose ts is found in cloud_cover records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070607 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: type, depth, lon, level
Sensor: air_quality | fields: lat, ts, unit, lon
Task: Fetch depth from wind_speed where type exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="type",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070608 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: type, ts, unit, qc
Sensor: drought_index | fields: ts, value, level, reading
Task: Get depth from soil_moisture where a corresponding entry exists in drought_index with the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070609 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: unit, ts, type, lon
Sensor: snow_depth | fields: lat, unit, depth, type
Task: Retrieve lat from air_quality whose ts is found in snow_depth records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070610 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: lat, ts, depth, level
Sensor: visibility | fields: depth, qc, lat, value
Task: Fetch lat from drought_index where type exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070611 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: lat, unit, qc, level
Sensor: sunlight | fields: ts, type, level, lon
Task: Get depth from humidity where value exceeds the maximum reading from sunlight for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070612 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: lat, reading, lon, qc
Sensor: frost | fields: qc, type, level, reading
Task: Get lat from visibility where unit appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070613 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: type, depth, qc, value
Sensor: evaporation | fields: lon, lat, reading, ts
Task: Fetch reading from drought_index that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070614 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: qc, reading, depth, value
Sensor: lightning | fields: depth, lat, value, unit
Task: Retrieve reading from pressure whose depth is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070615 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: ts, depth, lon, type
Sensor: sunlight | fields: lat, type, value, depth
Task: Retrieve reading from uv_index with reading above the AVG(value) of sunlight readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070616 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: reading, lat, depth, value
Sensor: cloud_cover | fields: reading, lat, qc, unit
Task: Retrieve lon from evaporation that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070617 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: qc, reading, unit, lat
Sensor: turbidity | fields: ts, unit, type, lon
Task: Get value from lightning where a corresponding entry exists in turbidity with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070618 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: lat, unit, qc, reading
Sensor: air_quality | fields: reading, depth, lon, ts
Task: Retrieve lat from evaporation with depth above the MAX(value) of air_quality readings sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070619 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: ts, depth, type, value
Sensor: wind_speed | fields: unit, ts, qc, depth
Task: Fetch value from pressure that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070620 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: reading, ts, value, lat
Sensor: evaporation | fields: lat, value, reading, ts
Task: Retrieve depth from uv_index that have at least one matching reading in evaporation sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070621 | train |
v3 | Sensor network script:
Node: humidity | code: clr | fields: depth, qc, reading, value
Sensor: sunlight | fields: lat, depth, lon, level
Task: Retrieve depth from humidity with value above the SUM(value) of sunlight readings sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070622 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: depth, level, reading, lat
Sensor: soil_moisture | fields: depth, qc, level, value
Task: Fetch reading from snow_depth where depth is greater than the total of value in soil_moisture for matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070623 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: unit, lon, qc, level
Sensor: snow_depth | fields: qc, ts, reading, level
Task: Fetch depth from uv_index that have at least one corresponding snow_depth measurement for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070624 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: lat, type, unit, qc
Sensor: lightning | fields: lat, value, reading, depth
Task: Fetch depth from snow_depth where ts exists in lightning sensor data for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070625 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: unit, ts, depth, value
Sensor: wind_speed | fields: lon, depth, unit, ts
Task: Fetch lon from uv_index where depth exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070626 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: qc, value, type, unit
Sensor: snow_depth | fields: lon, level, reading, unit
Task: Fetch level from evaporation where depth exists in snow_depth sensor data for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070627 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: ts, lon, reading, level
Sensor: snow_depth | fields: level, lon, depth, value
Task: Retrieve reading from pressure that have at least one matching reading in snow_depth sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="reading",
) | {
"outer_table": "pressure",
"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_070628 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: lat, unit, type, ts
Sensor: cloud_cover | fields: depth, reading, level, lon
Task: Fetch lat from rainfall where ts exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070629 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: level, lat, qc, unit
Sensor: rainfall | fields: level, lon, reading, ts
Task: Get reading from pressure where a corresponding entry exists in rainfall with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070630 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: level, lon, value, qc
Sensor: soil_moisture | fields: value, type, reading, lon
Task: Get value from frost where value exceeds the minimum reading from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070631 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: lon, depth, type, level
Sensor: air_quality | fields: reading, type, lon, depth
Task: Fetch lon from temperature where type exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070632 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: reading, lat, depth, unit
Sensor: air_quality | fields: reading, unit, level, qc
Task: Get lon from humidity where reading exceeds the maximum value from air_quality for the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070633 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: level, lat, qc, unit
Sensor: sunlight | fields: unit, depth, value, lat
Task: Retrieve lon from lightning with reading above the MIN(reading) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070634 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: depth, type, level, ts
Sensor: frost | fields: value, level, reading, ts
Task: Get lat from temperature where depth appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="type",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070635 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: lon, depth, ts, lat
Sensor: uv_index | fields: lon, type, qc, level
Task: Get value from drought_index where unit appears in uv_index readings with matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070636 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: ts, depth, reading, type
Sensor: soil_moisture | fields: lon, lat, reading, qc
Task: Retrieve level from humidity whose ts is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070637 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: lon, unit, qc, depth
Sensor: humidity | fields: depth, type, level, lon
Task: Get level from dew_point where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070638 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: type, depth, unit, qc
Sensor: turbidity | fields: level, lat, type, reading
Task: Retrieve depth from snow_depth whose ts is found in turbidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070639 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: value, level, type, lat
Sensor: lightning | fields: ts, level, lon, depth
Task: Retrieve reading from sunlight that have at least one matching reading in lightning sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070640 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: depth, lat, unit, lon
Sensor: dew_point | fields: reading, value, type, ts
Task: Get value from turbidity where value exceeds the average value from dew_point for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070641 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: level, depth, value, unit
Sensor: turbidity | fields: ts, level, unit, value
Task: Fetch depth from humidity where type exists in turbidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070642 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: value, level, type, lat
Sensor: temperature | fields: reading, depth, qc, lat
Task: Retrieve depth from snow_depth that have at least one matching reading in temperature sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070643 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: level, value, reading, qc
Sensor: evaporation | fields: lat, reading, qc, level
Task: Fetch lon from sunlight that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070644 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: depth, type, lon, reading
Sensor: pressure | fields: value, lon, reading, level
Task: Get value from frost where unit appears in pressure readings with matching ts.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070645 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: lon, reading, depth, ts
Sensor: sunlight | fields: value, lat, qc, lon
Task: Get reading from air_quality where type appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070646 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: qc, depth, lat, type
Sensor: humidity | fields: value, unit, level, lat
Task: Get depth from pressure where value exceeds the average depth from humidity for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070647 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: value, reading, unit, type
Sensor: drought_index | fields: ts, depth, reading, lon
Task: Retrieve level from sunlight that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070648 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: type, reading, qc, lon
Sensor: temperature | fields: ts, lat, lon, depth
Task: Fetch value from lightning that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070649 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: depth, reading, unit, level
Sensor: sunlight | fields: type, unit, level, ts
Task: Retrieve lat from visibility with depth above the SUM(depth) of sunlight readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070650 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: depth, value, level, ts
Sensor: frost | fields: value, qc, lat, ts
Task: Retrieve reading from visibility with depth above the COUNT(reading) of frost readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("frost", code="frs"),
match="qc"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070651 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: ts, reading, lon, value
Sensor: turbidity | fields: qc, lon, unit, ts
Task: Retrieve level from humidity with reading above the AVG(value) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070652 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: value, qc, reading, unit
Sensor: cloud_cover | fields: type, depth, lon, unit
Task: Get lon from turbidity where depth exceeds the average depth from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070653 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: unit, lat, reading, ts
Sensor: lightning | fields: unit, reading, lat, value
Task: Retrieve depth from pressure with reading above the MAX(value) of lightning readings sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"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_070654 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: depth, unit, value, lat
Sensor: wind_speed | fields: qc, unit, level, reading
Task: Retrieve value from rainfall that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070655 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: type, level, lon, reading
Sensor: dew_point | fields: unit, qc, level, value
Task: Get depth from uv_index where ts appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070656 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, lon, qc, level
Sensor: temperature | fields: lat, qc, lon, value
Task: Fetch lat from snow_depth where qc exists in temperature sensor data for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070657 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: value, unit, reading, ts
Sensor: dew_point | fields: level, lat, depth, unit
Task: Get depth from cloud_cover where reading exceeds the average depth from dew_point for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070658 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: lon, reading, depth, ts
Sensor: dew_point | fields: lon, unit, reading, qc
Task: Fetch value from air_quality where qc exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070659 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: lon, type, value, qc
Sensor: dew_point | fields: depth, level, lon, reading
Task: Retrieve depth from rainfall with reading above the MIN(value) of dew_point readings sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"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_070660 | train |
v2 | Sensor network script:
Node: uv_index | code: gst | fields: lat, value, reading, type
Sensor: pressure | fields: qc, ts, value, depth
Task: Get reading from uv_index where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070661 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: reading, qc, level, lat
Sensor: frost | fields: reading, lon, qc, depth
Task: Retrieve reading from rainfall that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070662 | train |
v3 | Sensor network script:
Node: wind_speed | code: ref | fields: lat, unit, value, reading
Sensor: pressure | fields: value, ts, depth, unit
Task: Retrieve reading from wind_speed with depth above the COUNT(reading) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070663 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: level, depth, value, unit
Sensor: cloud_cover | fields: type, lat, qc, value
Task: Fetch reading from lightning where value is greater than the count of of depth in cloud_cover for matching ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "reading",
"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_070664 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: type, lon, ts, qc
Sensor: lightning | fields: lat, reading, value, ts
Task: Retrieve depth from uv_index with value above the MAX(depth) of lightning readings sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070665 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: lat, unit, reading, qc
Sensor: pressure | fields: lat, depth, qc, level
Task: Get lat from turbidity where a corresponding entry exists in pressure with the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070666 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: level, lat, ts, value
Sensor: rainfall | fields: lon, value, type, qc
Task: Fetch value from turbidity where depth exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070667 | train |
v2 | Sensor network script:
Node: soil_moisture | code: ref | fields: level, lat, unit, value
Sensor: evaporation | fields: ts, lat, depth, level
Task: Fetch lon from soil_moisture that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070668 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: value, level, lat, type
Sensor: pressure | fields: reading, lon, qc, type
Task: Get level from lightning where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070669 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: lon, qc, value, level
Sensor: snow_depth | fields: lat, unit, level, ts
Task: Get lat from evaporation where unit appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070670 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: type, reading, lat, unit
Sensor: turbidity | fields: qc, lon, depth, type
Task: Retrieve lon from temperature that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070671 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: level, lat, reading, unit
Sensor: soil_moisture | fields: level, lat, depth, reading
Task: Retrieve depth from sunlight that have at least one matching reading in soil_moisture sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070672 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: type, ts, lon, level
Sensor: sunlight | fields: unit, depth, value, ts
Task: Retrieve lon from visibility that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070673 | train |
v3 | Sensor network script:
Node: frost | code: stn | fields: lat, unit, level, depth
Sensor: dew_point | fields: depth, qc, reading, unit
Task: Get value from frost where value exceeds the count of reading from dew_point for the same depth.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070674 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: lat, unit, depth, value
Sensor: snow_depth | fields: type, ts, reading, level
Task: Retrieve lon from evaporation whose unit is found in snow_depth records where ts matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070675 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: unit, level, ts, type
Sensor: uv_index | fields: ts, depth, unit, lat
Task: Get depth from turbidity where a corresponding entry exists in uv_index with the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070676 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: value, unit, lat, reading
Sensor: cloud_cover | fields: depth, qc, value, reading
Task: Get reading from dew_point where ts appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070677 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: type, depth, unit, level
Sensor: rainfall | fields: qc, level, unit, lon
Task: Get lat from humidity where a corresponding entry exists in rainfall with the same type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070678 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: qc, reading, ts, value
Sensor: turbidity | fields: unit, lon, value, lat
Task: Fetch lat from snow_depth that have at least one corresponding turbidity measurement for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070679 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: ts, type, depth, level
Sensor: rainfall | fields: qc, reading, lon, depth
Task: Get lon from turbidity where depth exceeds the count of depth from rainfall for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070680 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: unit, type, value, depth
Sensor: dew_point | fields: qc, depth, level, unit
Task: Get depth from visibility where ts appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070681 | train |
v3 | Sensor network script:
Node: turbidity | code: ref | fields: value, level, unit, qc
Sensor: drought_index | fields: level, value, lat, unit
Task: Get lon from turbidity where depth exceeds the total reading from drought_index for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070682 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: unit, ts, lat, lon
Sensor: rainfall | fields: value, type, depth, lon
Task: Fetch lon from cloud_cover that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070683 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: lat, depth, ts, unit
Sensor: cloud_cover | fields: value, lon, qc, depth
Task: Get depth from snow_depth where qc appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070684 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: ts, qc, value, lat
Sensor: rainfall | fields: lat, value, qc, depth
Task: Fetch lon from air_quality where ts exists in rainfall sensor data for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070685 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: lat, lon, ts, level
Sensor: lightning | fields: value, qc, ts, lat
Task: Get value from snow_depth where a corresponding entry exists in lightning with the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070686 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: lat, reading, value, depth
Sensor: pressure | fields: type, lon, reading, unit
Task: Get value from turbidity where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070687 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: reading, type, value, lat
Sensor: lightning | fields: type, qc, ts, lat
Task: Fetch reading from evaporation that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070688 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: depth, ts, reading, level
Sensor: snow_depth | fields: lat, reading, lon, ts
Task: Get lon from soil_moisture where ts appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070689 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: qc, lat, reading, unit
Sensor: uv_index | fields: value, depth, type, lon
Task: Get level from pressure where depth exceeds the total reading from uv_index for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070690 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: ts, value, type, unit
Sensor: pressure | fields: depth, ts, qc, unit
Task: Fetch lat from air_quality where reading is greater than the maximum of depth in pressure for matching type.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070691 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: reading, lat, type, lon
Sensor: pressure | fields: unit, qc, depth, reading
Task: Retrieve reading from temperature that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070692 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: ts, value, unit, depth
Sensor: uv_index | fields: value, lat, type, unit
Task: Get lon from wind_speed where unit appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070693 | train |
v2 | Sensor network script:
Node: drought_index | code: mst | fields: qc, lat, type, depth
Sensor: pressure | fields: reading, value, lat, level
Task: Fetch depth from drought_index that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070694 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: level, value, qc, unit
Sensor: humidity | fields: level, type, depth, lon
Task: Retrieve reading from temperature with value above the COUNT(value) of humidity readings sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070695 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: lon, value, reading, level
Sensor: soil_moisture | fields: reading, type, level, lat
Task: Fetch depth from sunlight that have at least one corresponding soil_moisture measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070696 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: type, ts, level, unit
Sensor: visibility | fields: qc, depth, reading, level
Task: Fetch value from sunlight where depth exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070697 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: type, lat, depth, qc
Sensor: humidity | fields: unit, lon, qc, ts
Task: Retrieve depth from frost that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070698 | train |
v1 | Sensor network script:
Node: wind_speed | code: stn | fields: unit, qc, type, level
Sensor: humidity | fields: reading, level, value, lon
Task: Retrieve level from wind_speed whose unit is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070699 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.