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: lightning | code: stn | fields: value, ts, lon, depth
Sensor: pressure | fields: lon, level, depth, ts
Task: Get value from lightning where a corresponding entry exists in pressure with the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074600 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: unit, level, type, lon
Sensor: dew_point | fields: lat, ts, unit, depth
Task: Get depth from pressure where qc appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074601 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: type, value, qc, ts
Sensor: humidity | fields: depth, level, lat, reading
Task: Retrieve lat from turbidity with value above the AVG(value) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074602 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: ts, depth, lat, unit
Sensor: sunlight | fields: reading, lat, level, value
Task: Fetch value from lightning that have at least one corresponding sunlight measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074603 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: type, level, value, depth
Sensor: drought_index | fields: reading, lon, type, unit
Task: Get value from temperature where value exceeds the count of value from drought_index for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074604 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: unit, depth, qc, value
Sensor: cloud_cover | fields: ts, unit, qc, lat
Task: Fetch lon from humidity that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074605 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: lon, lat, unit, type
Sensor: turbidity | fields: unit, qc, depth, lon
Task: Get level from frost where value exceeds the total depth from turbidity for the same unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074606 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: ts, value, lat, level
Sensor: air_quality | fields: lon, depth, lat, qc
Task: Get depth from frost where a corresponding entry exists in air_quality with the same depth.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074607 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: reading, depth, lat, type
Sensor: dew_point | fields: type, reading, depth, value
Task: Retrieve lon from evaporation that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074608 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: level, lon, qc, depth
Sensor: pressure | fields: qc, lat, type, depth
Task: Retrieve depth from turbidity that have at least one matching reading in pressure sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074609 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: qc, lat, ts, lon
Sensor: evaporation | fields: type, value, reading, level
Task: Retrieve lat from drought_index with reading above the AVG(depth) of evaporation readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074610 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: lat, reading, unit, type
Sensor: uv_index | fields: unit, lat, reading, depth
Task: Retrieve lat from visibility with depth above the COUNT(depth) of uv_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074611 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: ts, type, value, qc
Sensor: uv_index | fields: level, lon, depth, unit
Task: Retrieve lon from frost whose depth is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074612 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: value, reading, level, depth
Sensor: pressure | fields: ts, qc, value, unit
Task: Get value from turbidity where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074613 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: reading, lat, unit, depth
Sensor: sunlight | fields: level, ts, type, qc
Task: Retrieve depth from rainfall whose unit is found in sunlight records where ts matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074614 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: value, ts, unit, level
Sensor: dew_point | fields: unit, depth, value, lat
Task: Get reading from sunlight where depth exceeds the count of reading from dew_point for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074615 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: reading, qc, type, lat
Sensor: rainfall | fields: lat, ts, qc, reading
Task: Retrieve lon from frost that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074616 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: reading, depth, lat, type
Sensor: dew_point | fields: lon, qc, type, lat
Task: Retrieve reading from sunlight with depth above the MAX(value) of dew_point readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074617 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: lon, qc, reading, lat
Sensor: humidity | fields: unit, type, reading, lat
Task: Retrieve depth from visibility whose type is found in humidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074618 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: depth, reading, lon, unit
Sensor: uv_index | fields: ts, lat, level, lon
Task: Get level from lightning where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074619 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: level, type, reading, depth
Sensor: air_quality | fields: type, lat, reading, depth
Task: Fetch lat from snow_depth where depth exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074620 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: reading, type, value, unit
Sensor: dew_point | fields: depth, level, value, reading
Task: Get level from soil_moisture where type appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074621 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: ts, level, depth, unit
Sensor: evaporation | fields: lat, unit, ts, value
Task: Fetch depth from uv_index where reading is greater than the minimum of value in evaporation for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074622 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: ts, unit, level, depth
Sensor: air_quality | fields: type, depth, qc, ts
Task: Get level from visibility where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074623 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: reading, level, unit, type
Sensor: visibility | fields: level, ts, lon, lat
Task: Fetch reading from soil_moisture where ts exists in visibility sensor data for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074624 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: type, reading, level, lon
Sensor: turbidity | fields: qc, value, depth, type
Task: Retrieve lat from wind_speed that have at least one matching reading in turbidity sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074625 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: level, unit, lat, qc
Sensor: rainfall | fields: value, unit, reading, ts
Task: Retrieve lon from turbidity that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074626 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: ts, type, lat, value
Sensor: soil_moisture | fields: level, reading, lat, value
Task: Retrieve depth from visibility with depth above the AVG(reading) of soil_moisture readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074627 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: ts, reading, value, lat
Sensor: drought_index | fields: level, reading, lon, unit
Task: Retrieve level from wind_speed with reading above the AVG(reading) of drought_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074628 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: ts, reading, type, lat
Sensor: rainfall | fields: lon, type, reading, lat
Task: Get lat from snow_depth where ts appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074629 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: lat, lon, unit, level
Sensor: frost | fields: ts, lat, value, lon
Task: Fetch lat from dew_point where depth is greater than the average of depth in frost for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="unit"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074630 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: qc, depth, lon, unit
Sensor: sunlight | fields: unit, qc, reading, level
Task: Fetch level from cloud_cover where type exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074631 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: qc, value, depth, ts
Sensor: rainfall | fields: level, value, depth, type
Task: Get reading from dew_point where unit appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074632 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: type, value, ts, depth
Sensor: temperature | fields: ts, lat, value, lon
Task: Fetch reading from uv_index where depth is greater than the total of depth in temperature for matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074633 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: lat, value, type, level
Sensor: evaporation | fields: depth, reading, level, lon
Task: Get level from lightning where type appears in evaporation readings with matching ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074634 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: lon, depth, ts, lat
Sensor: temperature | fields: lon, qc, level, depth
Task: Retrieve value from cloud_cover with value above the MIN(value) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074635 | train |
v3 | Sensor network script:
Node: lightning | code: ref | fields: lat, level, value, type
Sensor: turbidity | fields: level, lat, unit, ts
Task: Fetch depth from lightning where value is greater than the total of depth in turbidity for matching ts.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074636 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: reading, lon, lat, depth
Sensor: soil_moisture | fields: level, lon, lat, value
Task: Get lat from wind_speed where depth exceeds the count of value from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074637 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: unit, level, lon, qc
Sensor: soil_moisture | fields: type, reading, depth, unit
Task: Retrieve depth from cloud_cover with value above the AVG(reading) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074638 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: value, lon, lat, level
Sensor: dew_point | fields: reading, lon, value, type
Task: Get reading from air_quality where value exceeds the average reading from dew_point for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074639 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: unit, value, lat, qc
Sensor: drought_index | fields: lat, unit, lon, ts
Task: Fetch reading from dew_point where reading is greater than the minimum of depth in drought_index for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074640 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: lat, qc, lon, ts
Sensor: wind_speed | fields: type, unit, value, lon
Task: Get lat from dew_point where a corresponding entry exists in wind_speed with the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074641 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: value, qc, lon, depth
Sensor: evaporation | fields: ts, lat, unit, depth
Task: Fetch level from rainfall where depth exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074642 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: unit, lat, depth, qc
Sensor: turbidity | fields: reading, value, qc, unit
Task: Fetch reading from humidity that have at least one corresponding turbidity measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074643 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: qc, type, unit, reading
Sensor: uv_index | fields: qc, value, type, unit
Task: Fetch value from turbidity where depth exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074644 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: level, lon, depth, type
Sensor: turbidity | fields: qc, depth, ts, reading
Task: Fetch depth from humidity that have at least one corresponding turbidity measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074645 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: lon, type, reading, qc
Sensor: sunlight | fields: depth, value, lat, reading
Task: Fetch reading from uv_index where unit exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074646 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: reading, depth, value, type
Sensor: frost | fields: depth, qc, lat, type
Task: Fetch value from visibility where type exists in frost sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="ts",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074647 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: unit, ts, lon, depth
Sensor: humidity | fields: level, type, depth, ts
Task: Get level from sunlight where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074648 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: qc, reading, ts, level
Sensor: rainfall | fields: reading, ts, qc, lon
Task: Retrieve reading from frost that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074649 | train |
v3 | Sensor network script:
Node: visibility | code: ref | fields: unit, level, type, ts
Sensor: lightning | fields: lon, unit, value, type
Task: Get lon from visibility where reading exceeds the total value from lightning for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074650 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: lon, unit, lat, reading
Sensor: evaporation | fields: reading, lon, qc, depth
Task: Retrieve value from sunlight with value above the COUNT(reading) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074651 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: unit, qc, value, depth
Sensor: turbidity | fields: depth, reading, unit, type
Task: Get level from visibility where a corresponding entry exists in turbidity with the same qc.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074652 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: depth, unit, type, value
Sensor: wind_speed | fields: ts, type, qc, unit
Task: Get lon from temperature where depth appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074653 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: value, depth, qc, reading
Sensor: dew_point | fields: value, depth, ts, level
Task: Retrieve lat from turbidity that have at least one matching reading in dew_point sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074654 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: lon, reading, level, value
Sensor: wind_speed | fields: qc, reading, depth, level
Task: Retrieve level from pressure with reading above the COUNT(value) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074655 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: depth, unit, lon, qc
Sensor: pressure | fields: value, unit, qc, level
Task: Retrieve reading from sunlight that have at least one matching reading in pressure sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074656 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: reading, ts, qc, depth
Sensor: snow_depth | fields: lat, value, ts, reading
Task: Retrieve reading from soil_moisture with depth above the MIN(reading) of snow_depth readings sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074657 | train |
v3 | Sensor network script:
Node: dew_point | code: mst | fields: depth, lon, type, lat
Sensor: evaporation | fields: level, ts, qc, reading
Task: Fetch value from dew_point where depth is greater than the total of reading in evaporation for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074658 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: qc, type, level, value
Sensor: evaporation | fields: unit, lon, level, depth
Task: Retrieve reading from drought_index that have at least one matching reading in evaporation sharing 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_074659 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: lat, unit, level, depth
Sensor: dew_point | fields: ts, lat, type, qc
Task: Fetch lat from drought_index where unit exists in dew_point sensor data for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074660 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: lon, depth, unit, ts
Sensor: dew_point | fields: level, qc, unit, depth
Task: Get lon from drought_index where a corresponding entry exists in dew_point with the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074661 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, lat, level, unit
Sensor: dew_point | fields: lon, value, unit, qc
Task: Fetch lat from soil_moisture where unit exists in dew_point sensor data for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074662 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: lon, unit, reading, value
Sensor: snow_depth | fields: ts, lat, unit, qc
Task: Fetch reading from wind_speed where depth is greater than the total of depth in snow_depth for matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074663 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: qc, type, depth, ts
Sensor: drought_index | fields: value, depth, type, level
Task: Get lat from uv_index where type appears in drought_index readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074664 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: unit, qc, ts, level
Sensor: uv_index | fields: reading, type, qc, depth
Task: Fetch lon from snow_depth where depth exists in uv_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074665 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: level, unit, lat, type
Sensor: temperature | fields: type, lat, lon, reading
Task: Retrieve reading from dew_point that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074666 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: level, unit, type, lat
Sensor: temperature | fields: reading, type, level, lat
Task: Retrieve lat from sunlight whose unit is found in temperature records where qc matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="qc",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074667 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: value, depth, lat, qc
Sensor: humidity | fields: lon, unit, ts, depth
Task: Retrieve level from snow_depth whose type is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074668 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: ts, qc, reading, unit
Sensor: turbidity | fields: type, qc, depth, unit
Task: Fetch reading from frost where reading is greater than the minimum of value in turbidity for matching qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074669 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: lon, level, reading, unit
Sensor: drought_index | fields: reading, value, ts, unit
Task: Get depth from uv_index where a corresponding entry exists in drought_index with the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074670 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: lat, depth, value, level
Sensor: snow_depth | fields: unit, reading, level, depth
Task: Fetch lon from temperature where unit exists in snow_depth sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074671 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: lat, reading, unit, depth
Sensor: visibility | fields: lat, ts, depth, unit
Task: Retrieve lon from dew_point with value above the MAX(value) of visibility readings sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074672 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: qc, value, reading, lon
Sensor: cloud_cover | fields: lat, level, reading, lon
Task: Fetch reading from visibility where unit exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074673 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: type, depth, lat, ts
Sensor: air_quality | fields: value, qc, lat, unit
Task: Get lon from cloud_cover where depth appears in air_quality readings with matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="type",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074674 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: lat, ts, level, unit
Sensor: snow_depth | fields: level, depth, type, unit
Task: Get lon from humidity where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074675 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: unit, reading, value, ts
Sensor: lightning | fields: reading, lon, value, qc
Task: Retrieve depth from frost with depth above the AVG(value) of lightning readings sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074676 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: unit, qc, type, lon
Sensor: evaporation | fields: unit, level, lon, type
Task: Retrieve depth from frost that have at least one matching reading in evaporation sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074677 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: depth, lat, value, type
Sensor: sunlight | fields: lon, depth, type, unit
Task: Fetch lon from air_quality where value is greater than the total of reading in sunlight for matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074678 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: lon, depth, lat, type
Sensor: frost | fields: lat, value, reading, unit
Task: Get lon from evaporation where reading exceeds the average depth from frost for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074679 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: ts, depth, unit, level
Sensor: pressure | fields: level, reading, value, ts
Task: Fetch level from frost that have at least one corresponding pressure measurement for the same unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074680 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: level, unit, type, value
Sensor: frost | fields: value, qc, lon, depth
Task: Fetch lon from snow_depth where reading is greater than the minimum of value in frost for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("frost", code="frs"),
match="ts"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074681 | train |
v2 | Sensor network script:
Node: uv_index | code: mst | fields: ts, reading, lat, qc
Sensor: evaporation | fields: level, reading, depth, value
Task: Get reading from uv_index where a corresponding entry exists in evaporation with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074682 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: level, qc, depth, unit
Sensor: sunlight | fields: type, lat, qc, depth
Task: Get depth from frost where qc appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074683 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: value, lat, lon, unit
Sensor: rainfall | fields: reading, unit, qc, level
Task: Fetch lon from dew_point where reading is greater than the total of value in rainfall for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074684 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: type, lon, depth, lat
Sensor: lightning | fields: qc, value, ts, depth
Task: Get level from visibility where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074685 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: ts, depth, qc, lon
Sensor: rainfall | fields: lon, depth, type, ts
Task: Get reading from frost where qc appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074686 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: depth, type, unit, lat
Sensor: lightning | fields: unit, value, level, qc
Task: Fetch level from snow_depth where depth exists in lightning sensor data for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074687 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: unit, reading, lat, depth
Sensor: pressure | fields: ts, type, reading, unit
Task: Retrieve depth from air_quality that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"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_074688 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: lon, reading, ts, qc
Sensor: air_quality | fields: level, ts, depth, type
Task: Fetch value from lightning where unit exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="type",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074689 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: lon, qc, reading, type
Sensor: dew_point | fields: lat, value, ts, reading
Task: Retrieve depth from rainfall with reading above the SUM(reading) of dew_point readings sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074690 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: lon, unit, lat, reading
Sensor: evaporation | fields: depth, level, value, reading
Task: Get reading from lightning where reading exceeds the count of value from evaporation for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074691 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: value, lon, depth, unit
Sensor: temperature | fields: lon, lat, reading, depth
Task: Get reading from turbidity where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074692 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: lon, qc, ts, level
Sensor: snow_depth | fields: type, value, ts, lat
Task: Get level from temperature where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074693 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: lat, qc, lon, unit
Sensor: rainfall | fields: reading, value, ts, lon
Task: Fetch lon from wind_speed that have at least one corresponding rainfall measurement for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074694 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: lat, depth, level, ts
Sensor: frost | fields: ts, depth, type, level
Task: Fetch level from humidity where depth exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074695 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: qc, reading, unit, value
Sensor: uv_index | fields: type, depth, qc, lat
Task: Fetch lat from humidity where depth exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074696 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: value, unit, reading, depth
Sensor: dew_point | fields: value, depth, unit, lat
Task: Get reading from uv_index where value exceeds the total reading from dew_point for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074697 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: value, reading, lon, lat
Sensor: frost | fields: unit, ts, level, lat
Task: Retrieve lon from soil_moisture that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074698 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: qc, unit, reading, value
Sensor: snow_depth | fields: qc, lon, ts, reading
Task: Retrieve value from drought_index whose ts is found in snow_depth records where qc matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074699 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.