variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: snow_depth | code: clr | fields: value, type, unit, reading
Sensor: air_quality | fields: reading, ts, value, qc
Task: Retrieve level from snow_depth with reading above the COUNT(value) of air_quality readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079400 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: unit, lon, type, depth
Sensor: cloud_cover | fields: ts, depth, unit, reading
Task: Get level from rainfall where unit appears in cloud_cover readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079401 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: unit, value, level, type
Sensor: wind_speed | fields: level, unit, lat, type
Task: Retrieve value from cloud_cover whose depth is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079402 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: ts, depth, value, level
Sensor: wind_speed | fields: qc, reading, lon, unit
Task: Retrieve lon from cloud_cover whose ts is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079403 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: reading, lat, ts, type
Sensor: frost | fields: type, qc, lon, reading
Task: Retrieve reading from air_quality with depth above the SUM(value) of frost readings sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("frost", code="frs"),
match="qc"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079404 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: ts, depth, qc, value
Sensor: snow_depth | fields: lon, ts, lat, level
Task: Get reading from humidity where ts appears in snow_depth readings with matching depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079405 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: qc, unit, ts, depth
Sensor: turbidity | fields: qc, value, level, ts
Task: Fetch value from humidity where type exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079406 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: value, type, lat, level
Sensor: evaporation | fields: qc, value, ts, type
Task: Fetch reading from rainfall where ts exists in evaporation sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079407 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: ts, reading, depth, qc
Sensor: uv_index | fields: ts, value, lon, reading
Task: Get lon from sunlight where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079408 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: type, level, lat, qc
Sensor: humidity | fields: ts, depth, lon, reading
Task: Retrieve reading from rainfall with value above the MAX(depth) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079409 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: lat, depth, reading, value
Sensor: wind_speed | fields: level, lat, reading, depth
Task: Fetch reading from frost where depth exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079410 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: depth, qc, reading, ts
Sensor: soil_moisture | fields: qc, lon, unit, depth
Task: Get lat from sunlight where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079411 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: type, unit, value, depth
Sensor: evaporation | fields: type, depth, unit, qc
Task: Fetch value from visibility that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079412 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: depth, reading, level, lon
Sensor: sunlight | fields: value, level, depth, type
Task: Get lat from dew_point where a corresponding entry exists in sunlight with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079413 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: level, type, ts, value
Sensor: wind_speed | fields: type, reading, qc, depth
Task: Get depth from air_quality where reading exceeds the minimum reading from wind_speed for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079414 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: unit, lat, lon, level
Sensor: soil_moisture | fields: depth, ts, value, qc
Task: Fetch lon from sunlight that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079415 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: ts, depth, unit, lat
Sensor: snow_depth | fields: lon, type, reading, ts
Task: Get lat from visibility where a corresponding entry exists in snow_depth with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079416 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: lon, depth, type, ts
Sensor: soil_moisture | fields: depth, qc, value, type
Task: Fetch value from frost where type exists in soil_moisture sensor data for the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079417 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: depth, value, lat, ts
Sensor: wind_speed | fields: level, depth, qc, value
Task: Retrieve depth from uv_index whose depth is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079418 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: ts, depth, type, reading
Sensor: evaporation | fields: ts, level, lon, value
Task: Retrieve lon from wind_speed whose type is found in evaporation records where ts matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079419 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: depth, level, value, lon
Sensor: snow_depth | fields: depth, unit, value, type
Task: Fetch lat from lightning that have at least one corresponding snow_depth measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079420 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: depth, type, ts, unit
Sensor: rainfall | fields: depth, unit, ts, lon
Task: Get value from air_quality where qc appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079421 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: value, unit, lat, lon
Sensor: lightning | fields: value, reading, level, lat
Task: Retrieve lat from pressure with reading above the MAX(depth) of lightning readings sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079422 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: type, unit, value, lon
Sensor: lightning | fields: ts, qc, unit, lat
Task: Fetch depth from frost where value is greater than the minimum of value in lightning for matching unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079423 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: reading, qc, lat, unit
Sensor: humidity | fields: level, unit, ts, type
Task: Fetch level from dew_point where ts exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="type",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079424 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: reading, lon, level, qc
Sensor: rainfall | fields: lat, value, lon, level
Task: Fetch level from uv_index that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079425 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: qc, depth, type, lat
Sensor: frost | fields: ts, value, unit, qc
Task: Retrieve reading from temperature that have at least one matching reading in frost sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079426 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: lon, qc, level, value
Sensor: visibility | fields: type, value, lon, depth
Task: Get lon from frost where reading exceeds the count of depth from visibility for the same type.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("visibility", code="clr"),
match="type"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079427 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: reading, level, unit, lon
Sensor: uv_index | fields: type, level, lon, value
Task: Get value from wind_speed where a corresponding entry exists in uv_index with the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079428 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: ts, level, qc, value
Sensor: rainfall | fields: reading, value, type, ts
Task: Fetch lat from snow_depth that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079429 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: reading, value, type, ts
Sensor: soil_moisture | fields: lat, lon, depth, value
Task: Fetch value from air_quality where reading is greater than the count of of depth in soil_moisture for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079430 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: lon, ts, unit, reading
Sensor: temperature | fields: unit, reading, lat, value
Task: Get lon from drought_index where ts appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079431 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: reading, lat, level, unit
Sensor: uv_index | fields: lat, ts, unit, depth
Task: Fetch lat from lightning where depth exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079432 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: unit, level, qc, reading
Sensor: evaporation | fields: depth, qc, unit, reading
Task: Get depth from rainfall where ts appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079433 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: unit, lat, reading, level
Sensor: dew_point | fields: lon, depth, unit, type
Task: Retrieve depth from frost whose depth is found in dew_point records where qc matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079434 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: qc, lat, lon, value
Sensor: air_quality | fields: value, ts, type, unit
Task: Retrieve reading from soil_moisture that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079435 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: unit, depth, qc, value
Sensor: uv_index | fields: lat, reading, ts, qc
Task: Get value from cloud_cover where depth appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079436 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: depth, ts, unit, lat
Sensor: uv_index | fields: value, lat, type, level
Task: Fetch lon from visibility where qc exists in uv_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079437 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: lon, unit, depth, reading
Sensor: snow_depth | fields: type, unit, value, lon
Task: Get value from evaporation where qc appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079438 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: lon, reading, qc, level
Sensor: visibility | fields: depth, lat, qc, level
Task: Fetch value from air_quality where depth is greater than the count of of value in visibility for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079439 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: value, unit, ts, qc
Sensor: pressure | fields: lon, qc, value, depth
Task: Fetch reading from evaporation where unit exists in pressure sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079440 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: ts, level, lon, unit
Sensor: drought_index | fields: value, level, reading, type
Task: Retrieve reading from humidity that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079441 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: lat, level, unit, reading
Sensor: soil_moisture | fields: value, type, qc, lon
Task: Get reading from sunlight where ts appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079442 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: ts, value, type, qc
Sensor: evaporation | fields: unit, qc, reading, lon
Task: Retrieve reading from visibility with reading above the SUM(reading) of evaporation readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079443 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: lat, unit, reading, depth
Sensor: evaporation | fields: value, depth, lon, type
Task: Get level from sunlight where type appears in evaporation readings with matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079444 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: unit, type, value, reading
Sensor: turbidity | fields: reading, unit, lat, depth
Task: Retrieve lat from visibility whose depth is found in turbidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079445 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: qc, unit, depth, level
Sensor: snow_depth | fields: reading, level, type, lon
Task: Retrieve lat from rainfall whose depth is found in snow_depth records where ts matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079446 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: depth, lat, reading, unit
Sensor: lightning | fields: lat, reading, ts, lon
Task: Fetch level from visibility where depth exists in lightning sensor data for the same type.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="type",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079447 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: unit, value, qc, depth
Sensor: lightning | fields: qc, ts, unit, reading
Task: Fetch value from air_quality where type exists in lightning sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079448 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: qc, ts, depth, level
Sensor: sunlight | fields: qc, unit, ts, depth
Task: Fetch level from evaporation where type exists in sunlight sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079449 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: type, lat, ts, value
Sensor: lightning | fields: ts, type, level, unit
Task: Fetch lat from evaporation that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079450 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: unit, value, lon, qc
Sensor: wind_speed | fields: type, level, reading, unit
Task: Fetch depth from temperature where ts exists in wind_speed sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079451 | train |
v3 | Sensor network script:
Node: visibility | code: gst | fields: value, lon, unit, reading
Sensor: humidity | fields: value, ts, level, reading
Task: Fetch lat from visibility where reading is greater than the count of of depth in humidity for matching unit.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079452 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: unit, type, level, ts
Sensor: drought_index | fields: qc, unit, level, reading
Task: Fetch reading from humidity that have at least one corresponding drought_index measurement for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079453 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: unit, type, ts, depth
Sensor: dew_point | fields: level, type, lon, qc
Task: Get reading from sunlight where a corresponding entry exists in dew_point with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079454 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: depth, lon, level, unit
Sensor: drought_index | fields: reading, lon, unit, ts
Task: Get lat from snow_depth where qc appears in drought_index readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079455 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: type, depth, ts, level
Sensor: drought_index | fields: qc, unit, level, reading
Task: Retrieve reading from air_quality whose unit is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079456 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: unit, ts, lon, reading
Sensor: temperature | fields: ts, type, reading, lon
Task: Get lon from rainfall where depth exceeds the average value from temperature for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079457 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: ts, type, lat, value
Sensor: uv_index | fields: lon, ts, qc, level
Task: Get reading from snow_depth where depth appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079458 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: type, reading, level, unit
Sensor: temperature | fields: depth, qc, level, reading
Task: Fetch level from visibility that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079459 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: qc, unit, reading, value
Sensor: air_quality | fields: unit, type, qc, ts
Task: Get level from wind_speed where unit appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079460 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: value, qc, lon, lat
Sensor: air_quality | fields: lon, value, qc, reading
Task: Retrieve lon from visibility whose depth is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079461 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: level, lat, type, value
Sensor: sunlight | fields: level, lon, unit, ts
Task: Retrieve depth from rainfall that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079462 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: lon, depth, value, qc
Sensor: humidity | fields: depth, unit, level, lat
Task: Retrieve lat from dew_point that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079463 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: qc, value, unit, type
Sensor: lightning | fields: reading, lon, qc, value
Task: Retrieve reading from visibility whose depth is found in lightning records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079464 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: depth, type, lon, value
Sensor: visibility | fields: depth, reading, level, value
Task: Fetch reading from snow_depth where value is greater than the count of of reading in visibility for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("visibility", code="clr"),
match="type"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079465 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: unit, level, lon, value
Sensor: sunlight | fields: reading, lat, lon, unit
Task: Fetch lat from uv_index where value is greater than the average of reading in sunlight for matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079466 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: depth, reading, value, unit
Sensor: air_quality | fields: unit, type, depth, qc
Task: Get lon from cloud_cover where qc appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079467 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: level, type, depth, qc
Sensor: rainfall | fields: lat, reading, lon, level
Task: Retrieve lat from lightning with value above the MIN(reading) of rainfall readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079468 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: ts, level, lon, value
Sensor: visibility | fields: qc, ts, unit, lon
Task: Get level from humidity where qc appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079469 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: lon, unit, lat, depth
Sensor: lightning | fields: type, depth, level, unit
Task: Get lat from soil_moisture where a corresponding entry exists in lightning with the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079470 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: qc, lon, level, depth
Sensor: snow_depth | fields: level, depth, qc, lat
Task: Retrieve value from frost that have at least one matching reading in snow_depth sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079471 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: level, lon, lat, reading
Sensor: pressure | fields: depth, ts, qc, value
Task: Fetch lon from evaporation that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079472 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, ts, unit, qc
Sensor: evaporation | fields: qc, unit, ts, lat
Task: Fetch lat from snow_depth where ts exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079473 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: depth, type, lon, level
Sensor: frost | fields: qc, unit, ts, reading
Task: Retrieve level from cloud_cover that have at least one matching reading in frost sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079474 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: qc, type, ts, depth
Sensor: frost | fields: value, lat, qc, depth
Task: Get level from pressure where depth exceeds the count of depth from frost for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079475 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: reading, value, ts, depth
Sensor: snow_depth | fields: type, value, lat, qc
Task: Retrieve level from cloud_cover that have at least one matching reading in snow_depth sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079476 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: ts, depth, lon, lat
Sensor: cloud_cover | fields: reading, level, unit, type
Task: Retrieve lat from pressure whose depth is found in cloud_cover records where type matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079477 | train |
v3 | Sensor network script:
Node: dew_point | code: mst | fields: lat, level, unit, value
Sensor: visibility | fields: level, unit, type, qc
Task: Retrieve depth from dew_point with reading above the MIN(value) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079478 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: depth, type, lon, qc
Sensor: evaporation | fields: qc, reading, value, lon
Task: Get depth from lightning where qc appears in evaporation readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079479 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: depth, lat, ts, value
Sensor: sunlight | fields: qc, depth, lat, lon
Task: Get level from turbidity where depth exceeds the average depth from sunlight for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079480 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: reading, value, type, depth
Sensor: frost | fields: depth, unit, reading, lat
Task: Get level from drought_index where unit appears in frost readings with matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079481 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: lat, unit, value, type
Sensor: soil_moisture | fields: type, reading, lon, qc
Task: Get reading from wind_speed where type appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079482 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: qc, value, level, ts
Sensor: soil_moisture | fields: reading, level, lat, depth
Task: Fetch level from frost where depth is greater than the maximum of reading in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079483 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: qc, level, unit, lon
Sensor: pressure | fields: ts, type, reading, unit
Task: Retrieve depth from drought_index with depth above the MAX(reading) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079484 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: qc, ts, reading, level
Sensor: temperature | fields: qc, reading, ts, depth
Task: Fetch level from humidity where ts exists in temperature sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079485 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: depth, lat, type, ts
Sensor: turbidity | fields: lon, value, depth, type
Task: Get depth from humidity where a corresponding entry exists in turbidity with 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_079486 | train |
v3 | Sensor network script:
Node: humidity | code: thr | fields: unit, qc, depth, level
Sensor: dew_point | fields: depth, ts, qc, lat
Task: Get depth from humidity where reading exceeds the average depth from dew_point for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079487 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: lon, type, depth, level
Sensor: pressure | fields: type, ts, qc, lon
Task: Retrieve value from wind_speed with value above the MIN(depth) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079488 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: depth, level, qc, unit
Sensor: evaporation | fields: depth, lon, lat, type
Task: Get reading from lightning where qc appears in evaporation readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079489 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: lat, type, reading, unit
Sensor: lightning | fields: value, reading, qc, depth
Task: Retrieve lon from wind_speed with value above the MAX(reading) of lightning readings sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079490 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: depth, type, reading, ts
Sensor: lightning | fields: qc, value, reading, lat
Task: Get depth from frost where depth exceeds the count of value from lightning for the same ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079491 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: type, level, qc, lon
Sensor: rainfall | fields: value, reading, ts, level
Task: Retrieve depth from wind_speed whose type is found in rainfall records where qc matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079492 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: level, value, ts, qc
Sensor: drought_index | fields: value, depth, qc, unit
Task: Fetch value from rainfall that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079493 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: value, lon, type, ts
Sensor: pressure | fields: depth, level, lat, type
Task: Retrieve lat from cloud_cover that have at least one matching reading in pressure sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079494 | train |
v1 | Sensor network script:
Node: wind_speed | code: stn | fields: type, lon, unit, level
Sensor: cloud_cover | fields: ts, qc, level, lon
Task: Retrieve depth from wind_speed whose depth is found in cloud_cover records where type matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079495 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: unit, ts, lat, depth
Sensor: frost | fields: ts, unit, lat, type
Task: Retrieve lon from dew_point that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079496 | train |
v2 | Sensor network script:
Node: soil_moisture | code: ref | fields: ts, type, reading, value
Sensor: snow_depth | fields: type, lon, depth, ts
Task: Get lat from soil_moisture where a corresponding entry exists in snow_depth with the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079497 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: unit, reading, lat, lon
Sensor: pressure | fields: value, qc, depth, ts
Task: Retrieve level from humidity with value above the COUNT(depth) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079498 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: value, unit, depth, ts
Sensor: turbidity | fields: depth, lat, type, qc
Task: Fetch depth from wind_speed where depth exists in turbidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.