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: turbidity | code: thr | fields: level, lat, type, value
Sensor: visibility | fields: unit, lat, value, type
Task: Fetch lon from turbidity that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016600 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: value, ts, unit, level
Sensor: sunlight | fields: depth, reading, value, lon
Task: Retrieve reading from drought_index whose unit is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016601 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: ts, reading, unit, qc
Sensor: soil_moisture | fields: value, reading, lon, type
Task: Fetch lat from frost where value is greater than the average of reading in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"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_016602 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: reading, depth, type, value
Sensor: uv_index | fields: ts, reading, depth, lat
Task: Retrieve level from visibility with depth above the MIN(reading) of uv_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016603 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: lon, type, level, reading
Sensor: sunlight | fields: unit, ts, reading, qc
Task: Retrieve lat from soil_moisture whose type is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016604 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: ts, level, qc, type
Sensor: temperature | fields: qc, level, reading, ts
Task: Fetch value from rainfall that have at least one corresponding temperature measurement for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016605 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: ts, value, type, reading
Sensor: temperature | fields: qc, value, depth, lat
Task: Retrieve depth from turbidity with value above the SUM(value) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016606 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: lat, unit, value, depth
Sensor: lightning | fields: level, depth, lon, type
Task: Fetch reading from temperature that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016607 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: ts, lat, depth, level
Sensor: humidity | fields: type, lon, lat, reading
Task: Fetch lon from lightning that have at least one corresponding humidity measurement for the same type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016608 | train |
v2 | Sensor network script:
Node: soil_moisture | code: ref | fields: type, reading, qc, unit
Sensor: rainfall | fields: ts, unit, type, reading
Task: Fetch lon from soil_moisture that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016609 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: value, qc, depth, lat
Sensor: soil_moisture | fields: type, reading, level, ts
Task: Retrieve lon from evaporation with reading above the COUNT(depth) of soil_moisture readings sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016610 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: lon, ts, qc, value
Sensor: humidity | fields: lon, level, reading, depth
Task: Fetch lat from dew_point where depth is greater than the maximum of value in humidity for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016611 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: type, value, ts, qc
Sensor: dew_point | fields: qc, ts, type, reading
Task: Retrieve reading from soil_moisture with value above the SUM(depth) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016612 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: type, level, lon, reading
Sensor: lightning | fields: lat, type, level, unit
Task: Fetch reading from temperature where ts exists in lightning sensor data for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016613 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: type, ts, qc, depth
Sensor: wind_speed | fields: level, lon, reading, value
Task: Fetch level from cloud_cover where value is greater than the minimum of value in wind_speed for matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016614 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: qc, lon, lat, ts
Sensor: cloud_cover | fields: ts, type, level, lat
Task: Retrieve value from evaporation that have at least one matching reading in cloud_cover sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016615 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: depth, type, lon, qc
Sensor: uv_index | fields: value, unit, qc, depth
Task: Get lon from rainfall where value exceeds the total reading from uv_index for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016616 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: lat, lon, ts, level
Sensor: drought_index | fields: type, qc, depth, unit
Task: Retrieve value from sunlight with reading above the COUNT(reading) of drought_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016617 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: unit, reading, ts, lat
Sensor: sunlight | fields: level, type, lat, lon
Task: Fetch lon from drought_index that have at least one corresponding sunlight measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016618 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: lat, level, lon, depth
Sensor: cloud_cover | fields: type, value, reading, lon
Task: Get level from air_quality where reading exceeds the count of reading from cloud_cover for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016619 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: ts, qc, lat, reading
Sensor: cloud_cover | fields: ts, level, value, qc
Task: Fetch depth from rainfall where depth exists in cloud_cover sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016620 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: value, qc, level, ts
Sensor: soil_moisture | fields: level, value, ts, qc
Task: Get reading from evaporation where ts appears in soil_moisture readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016621 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: depth, reading, qc, lat
Sensor: cloud_cover | fields: ts, level, type, unit
Task: Retrieve reading from visibility that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016622 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: unit, level, reading, depth
Sensor: snow_depth | fields: unit, level, type, lon
Task: Get level from temperature where a corresponding entry exists in snow_depth with the same type.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016623 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: depth, unit, qc, lon
Sensor: rainfall | fields: type, ts, level, depth
Task: Get depth from drought_index where value exceeds the count of depth from rainfall for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016624 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: type, reading, ts, level
Sensor: wind_speed | fields: unit, qc, lat, value
Task: Fetch depth from soil_moisture where reading is greater than the count of of value in wind_speed for matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016625 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: ts, value, depth, lon
Sensor: uv_index | fields: type, lat, depth, unit
Task: Retrieve depth from sunlight that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016626 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: unit, value, qc, reading
Sensor: frost | fields: value, lon, qc, reading
Task: Get depth from rainfall where reading exceeds the maximum reading from frost for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("frost", code="frs"),
match="qc"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016627 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: reading, unit, qc, ts
Sensor: soil_moisture | fields: level, lat, depth, unit
Task: Get value from air_quality where ts appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016628 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: depth, reading, level, ts
Sensor: drought_index | fields: value, ts, level, lon
Task: Fetch reading from visibility where type exists in drought_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016629 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: qc, lon, value, ts
Sensor: visibility | fields: value, lat, unit, ts
Task: Fetch lon from temperature where depth is greater than the maximum of depth in visibility for matching type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="type"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016630 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: reading, ts, value, lat
Sensor: pressure | fields: value, lon, qc, unit
Task: Fetch lon from temperature where qc exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016631 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: lat, type, value, depth
Sensor: sunlight | fields: depth, lon, reading, level
Task: Fetch level from turbidity where depth exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016632 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: unit, ts, lat, level
Sensor: rainfall | fields: lon, qc, ts, unit
Task: Get level from wind_speed where unit appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016633 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: unit, type, value, ts
Sensor: humidity | fields: qc, level, ts, lon
Task: Retrieve level from rainfall with depth above the SUM(value) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"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_016634 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: depth, ts, lon, reading
Sensor: pressure | fields: lon, lat, depth, level
Task: Retrieve lon from uv_index that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016635 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: lon, depth, type, reading
Sensor: humidity | fields: ts, level, lat, depth
Task: Fetch lon from evaporation that have at least one corresponding humidity measurement for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016636 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: lon, reading, level, lat
Sensor: evaporation | fields: unit, type, lon, depth
Task: Fetch value from lightning that have at least one corresponding evaporation measurement for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016637 | train |
v1 | Sensor network script:
Node: dew_point | code: mst | fields: lat, unit, depth, level
Sensor: soil_moisture | fields: value, qc, depth, level
Task: Retrieve reading from dew_point whose unit is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016638 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: lon, depth, type, unit
Sensor: sunlight | fields: unit, lat, depth, qc
Task: Get lat from soil_moisture where reading exceeds the total reading from sunlight for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016639 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: type, depth, level, value
Sensor: pressure | fields: ts, depth, reading, type
Task: Get lat from dew_point where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016640 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: level, depth, lon, qc
Sensor: wind_speed | fields: ts, reading, lat, qc
Task: Get value from snow_depth where unit appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016641 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: reading, ts, unit, type
Sensor: rainfall | fields: type, lon, level, ts
Task: Get lon from uv_index where a corresponding entry exists in rainfall with the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016642 | train |
v2 | Sensor network script:
Node: uv_index | code: gst | fields: type, qc, value, reading
Sensor: visibility | fields: reading, type, lat, ts
Task: Get lat from uv_index where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016643 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: level, type, reading, depth
Sensor: snow_depth | fields: ts, lat, reading, lon
Task: Fetch lon from turbidity where qc exists in snow_depth sensor data for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016644 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: lat, ts, level, depth
Sensor: dew_point | fields: value, qc, unit, reading
Task: Retrieve lat from pressure with depth above the MAX(value) of dew_point readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016645 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: lat, ts, lon, qc
Sensor: cloud_cover | fields: level, lat, reading, value
Task: Get lon from dew_point where qc appears in cloud_cover readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016646 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: depth, unit, value, ts
Sensor: frost | fields: lat, ts, type, depth
Task: Fetch reading from evaporation that have at least one corresponding frost measurement for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016647 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: qc, type, lon, ts
Sensor: temperature | fields: value, lat, type, unit
Task: Get level from snow_depth where qc appears in temperature readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016648 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: value, reading, lat, ts
Sensor: lightning | fields: reading, lon, lat, depth
Task: Get reading from drought_index where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016649 | train |
v3 | Sensor network script:
Node: wind_speed | code: ref | fields: qc, ts, lat, unit
Sensor: lightning | fields: type, level, lat, reading
Task: Get reading from wind_speed where reading exceeds the minimum value from lightning for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016650 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: type, value, unit, ts
Sensor: wind_speed | fields: level, value, reading, qc
Task: Retrieve value from air_quality whose depth is found in wind_speed records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016651 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: lat, lon, unit, level
Sensor: wind_speed | fields: qc, lat, unit, ts
Task: Fetch reading from evaporation that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016652 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: unit, reading, depth, ts
Sensor: turbidity | fields: value, lat, level, type
Task: Retrieve level from lightning whose ts is found in turbidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016653 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: type, ts, lon, lat
Sensor: snow_depth | fields: level, qc, type, unit
Task: Fetch lat from wind_speed where depth exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016654 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: value, qc, reading, depth
Sensor: dew_point | fields: ts, type, reading, level
Task: Fetch value from temperature that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016655 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: lon, value, type, reading
Sensor: cloud_cover | fields: lat, value, level, type
Task: Get reading from turbidity where a corresponding entry exists in cloud_cover with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016656 | train |
v3 | Sensor network script:
Node: turbidity | code: ref | fields: type, level, unit, value
Sensor: cloud_cover | fields: depth, ts, type, qc
Task: Fetch depth from turbidity where depth is greater than the count of of reading in cloud_cover for matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016657 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: type, depth, lon, unit
Sensor: drought_index | fields: lon, reading, unit, level
Task: Retrieve depth from snow_depth that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016658 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: lon, depth, qc, level
Sensor: humidity | fields: ts, unit, level, lat
Task: Retrieve level from cloud_cover with value above the MAX(reading) of humidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"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_016659 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: qc, value, lat, unit
Sensor: temperature | fields: depth, type, qc, level
Task: Retrieve level from uv_index whose unit is found in temperature records where depth matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016660 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: value, lat, unit, depth
Sensor: lightning | fields: lat, value, depth, type
Task: Retrieve lat from visibility whose ts is found in lightning records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016661 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: depth, unit, lon, ts
Sensor: lightning | fields: unit, reading, value, level
Task: Fetch depth from snow_depth that have at least one corresponding lightning measurement for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016662 | train |
v3 | Sensor network script:
Node: frost | code: ref | fields: unit, depth, value, reading
Sensor: soil_moisture | fields: value, qc, reading, unit
Task: Get depth from frost where depth exceeds the minimum reading from soil_moisture for the same depth.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016663 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: unit, qc, level, lon
Sensor: wind_speed | fields: ts, value, lon, unit
Task: Fetch reading from pressure where type exists in wind_speed sensor data for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016664 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: value, unit, depth, level
Sensor: uv_index | fields: type, depth, unit, level
Task: Retrieve value from soil_moisture whose qc is found in uv_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016665 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: qc, reading, lat, unit
Sensor: frost | fields: type, lat, lon, level
Task: Retrieve lon from rainfall that have at least one matching reading in frost sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016666 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: type, lat, ts, depth
Sensor: uv_index | fields: unit, level, value, lon
Task: Fetch level from evaporation where unit exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016667 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: ts, qc, level, lat
Sensor: rainfall | fields: unit, depth, qc, reading
Task: Get lat from uv_index where unit appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016668 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: depth, level, type, ts
Sensor: air_quality | fields: qc, level, type, reading
Task: Fetch value from turbidity where qc exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016669 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: lon, unit, level, ts
Sensor: frost | fields: lat, level, value, ts
Task: Get reading from drought_index where type appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016670 | train |
v3 | Sensor network script:
Node: humidity | code: thr | fields: ts, type, lon, value
Sensor: pressure | fields: reading, lon, qc, level
Task: Retrieve reading from humidity with value above the MAX(reading) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016671 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: reading, qc, value, level
Sensor: cloud_cover | fields: qc, value, lon, reading
Task: Retrieve value from rainfall whose unit is found in cloud_cover records where qc matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016672 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: qc, ts, lon, level
Sensor: snow_depth | fields: type, value, ts, unit
Task: Fetch depth from lightning where type exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016673 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: lat, qc, type, value
Sensor: visibility | fields: unit, lat, reading, type
Task: Retrieve value from temperature with reading above the AVG(value) of visibility readings sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="type"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016674 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: reading, level, qc, lon
Sensor: lightning | fields: lon, qc, ts, type
Task: Fetch lon from frost that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016675 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: qc, reading, lon, value
Sensor: visibility | fields: level, ts, depth, type
Task: Retrieve lat from humidity that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016676 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: depth, qc, lat, ts
Sensor: dew_point | fields: depth, unit, qc, level
Task: Fetch depth from cloud_cover where type exists in dew_point sensor data for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016677 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: ts, lat, qc, type
Sensor: turbidity | fields: reading, level, lat, value
Task: Get level from pressure where a corresponding entry exists in turbidity with the same type.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016678 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: reading, depth, lat, level
Sensor: lightning | fields: level, type, reading, unit
Task: Retrieve lon from frost whose unit is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016679 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: type, lon, unit, lat
Sensor: temperature | fields: type, unit, ts, qc
Task: Fetch level from evaporation that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016680 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: qc, lat, depth, level
Sensor: snow_depth | fields: value, depth, lon, ts
Task: Fetch lat from drought_index where value is greater than the count of of reading in snow_depth for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016681 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: reading, lat, ts, lon
Sensor: temperature | fields: ts, depth, lat, qc
Task: Fetch value from air_quality where depth exists in temperature sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016682 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: reading, type, depth, qc
Sensor: cloud_cover | fields: lat, ts, lon, depth
Task: Get lon from evaporation where value exceeds the minimum depth from cloud_cover for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016683 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: ts, unit, level, depth
Sensor: evaporation | fields: qc, lon, value, reading
Task: Fetch lon from rainfall where depth is greater than the total of depth in evaporation for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016684 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: depth, value, unit, type
Sensor: temperature | fields: unit, reading, lat, level
Task: Retrieve level from dew_point that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016685 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: ts, value, lon, depth
Sensor: rainfall | fields: ts, reading, value, lon
Task: Retrieve depth from soil_moisture that have at least one matching reading in rainfall sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016686 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: unit, lon, qc, level
Sensor: soil_moisture | fields: reading, depth, type, lon
Task: Retrieve reading from dew_point that have at least one matching reading in soil_moisture sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016687 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: value, unit, lon, reading
Sensor: pressure | fields: unit, depth, ts, value
Task: Get level from frost where a corresponding entry exists in pressure with the same depth.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016688 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: depth, lat, ts, unit
Sensor: humidity | fields: unit, ts, reading, lon
Task: Fetch value from pressure where ts exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016689 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: depth, unit, value, qc
Sensor: snow_depth | fields: reading, qc, ts, type
Task: Fetch reading from turbidity where type exists in snow_depth sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016690 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: ts, reading, lon, type
Sensor: wind_speed | fields: lat, unit, ts, depth
Task: Retrieve value from temperature whose depth is found in wind_speed records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016691 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: ts, qc, value, type
Sensor: cloud_cover | fields: depth, type, lat, value
Task: Get depth from soil_moisture where reading exceeds the maximum value from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016692 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: level, lat, reading, unit
Sensor: temperature | fields: level, lon, depth, qc
Task: Retrieve depth from turbidity with reading above the MAX(value) of temperature readings sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_016693 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: ts, lon, value, type
Sensor: pressure | fields: level, depth, lat, reading
Task: Retrieve level from snow_depth whose type is found in pressure records where type matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016694 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: lat, lon, qc, type
Sensor: soil_moisture | fields: lon, reading, lat, value
Task: Get lat from pressure where depth appears in soil_moisture readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016695 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: ts, qc, lon, type
Sensor: evaporation | fields: qc, reading, lat, level
Task: Fetch depth from air_quality where value is greater than the count of of depth in evaporation for matching type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016696 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: lat, value, unit, ts
Sensor: rainfall | fields: lat, level, type, qc
Task: Get lat from frost where depth appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016697 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: type, depth, lon, reading
Sensor: sunlight | fields: qc, reading, lat, ts
Task: Get reading from cloud_cover where qc appears in sunlight readings with matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016698 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: unit, qc, type, reading
Sensor: cloud_cover | fields: ts, reading, lat, lon
Task: Retrieve lat from turbidity whose depth is found in cloud_cover records where qc matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_016699 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.