variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: pressure | code: mst | fields: qc, reading, level, value
Sensor: wind_speed | fields: value, ts, reading, lon
Task: Get depth from pressure where qc appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009400 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: type, ts, value, lat
Sensor: evaporation | fields: unit, reading, type, value
Task: Fetch lat from visibility that have at least one corresponding evaporation measurement for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009401 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: level, qc, type, unit
Sensor: turbidity | fields: ts, qc, type, value
Task: Retrieve level from lightning with reading above the MIN(depth) of turbidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009402 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: unit, type, lon, value
Sensor: rainfall | fields: reading, value, type, lat
Task: Retrieve lat from dew_point with depth above the MAX(depth) of rainfall readings sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009403 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: lon, level, qc, unit
Sensor: frost | fields: lat, level, ts, unit
Task: Get lon from wind_speed where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009404 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: unit, depth, qc, type
Sensor: visibility | fields: ts, qc, lon, level
Task: Get reading from soil_moisture where qc appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="ts",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009405 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: ts, value, lat, reading
Sensor: dew_point | fields: level, lon, qc, type
Task: Fetch lat from rainfall that have at least one corresponding dew_point measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009406 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: reading, lon, lat, ts
Sensor: drought_index | fields: ts, depth, lon, value
Task: Fetch lat from rainfall that have at least one corresponding drought_index measurement for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009407 | train |
v2 | Sensor network script:
Node: snow_depth | code: ref | fields: lat, lon, qc, type
Sensor: wind_speed | fields: ts, type, level, reading
Task: Get value from snow_depth where a corresponding entry exists in wind_speed with the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009408 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: lat, qc, level, lon
Sensor: humidity | fields: depth, qc, lon, unit
Task: Get depth from wind_speed where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009409 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: depth, lat, value, lon
Sensor: soil_moisture | fields: unit, depth, type, reading
Task: Fetch lon from rainfall that have at least one corresponding soil_moisture measurement for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009410 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: ts, level, reading, unit
Sensor: uv_index | fields: ts, value, lon, qc
Task: Get level from rainfall where depth appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009411 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: lat, value, lon, qc
Sensor: wind_speed | fields: ts, reading, lat, depth
Task: Get level from humidity where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009412 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: depth, level, ts, type
Sensor: temperature | fields: ts, unit, reading, type
Task: Get lon from sunlight where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009413 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: lat, unit, value, level
Sensor: evaporation | fields: depth, value, reading, qc
Task: Get lat from cloud_cover where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009414 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: type, value, unit, lat
Sensor: lightning | fields: unit, value, ts, lon
Task: Get reading from rainfall where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009415 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: depth, type, lon, unit
Sensor: turbidity | fields: value, depth, reading, lat
Task: Get reading from pressure where type appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009416 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: lon, value, lat, ts
Sensor: wind_speed | fields: value, type, ts, lat
Task: Retrieve lon from drought_index that have at least one matching reading in wind_speed sharing the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009417 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: lon, lat, qc, reading
Sensor: rainfall | fields: lon, type, qc, reading
Task: Retrieve depth from drought_index that have at least one matching reading in rainfall sharing the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009418 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: type, ts, value, unit
Sensor: dew_point | fields: value, lon, type, depth
Task: Fetch value from humidity where unit exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009419 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: reading, unit, type, level
Sensor: frost | fields: lat, level, unit, ts
Task: Retrieve reading from uv_index whose unit is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009420 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: ts, qc, value, lon
Sensor: visibility | fields: reading, type, depth, ts
Task: Retrieve reading from dew_point with reading above the MIN(reading) of visibility readings sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009421 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: type, level, value, qc
Sensor: sunlight | fields: level, ts, value, lat
Task: Retrieve lon from snow_depth that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009422 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: qc, ts, depth, type
Sensor: wind_speed | fields: level, value, ts, type
Task: Fetch level from lightning that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009423 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: unit, ts, depth, lat
Sensor: air_quality | fields: ts, level, qc, lon
Task: Fetch value from dew_point where value is greater than the maximum of reading in air_quality for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009424 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: lon, level, depth, lat
Sensor: visibility | fields: lat, value, unit, level
Task: Fetch level from soil_moisture where value is greater than the total of reading in visibility for matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009425 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: lon, depth, ts, level
Sensor: uv_index | fields: type, unit, reading, qc
Task: Retrieve depth from lightning that have at least one matching reading in uv_index sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009426 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: ts, value, type, unit
Sensor: soil_moisture | fields: value, depth, type, lon
Task: Retrieve depth from frost whose ts is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009427 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: unit, depth, lon, type
Sensor: visibility | fields: lat, unit, ts, level
Task: Get level from sunlight where ts appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009428 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: lon, reading, value, type
Sensor: uv_index | fields: reading, type, lat, lon
Task: Fetch reading from temperature that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009429 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: type, lon, level, ts
Sensor: turbidity | fields: value, unit, reading, lat
Task: Retrieve lon from temperature that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009430 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: level, lon, unit, type
Sensor: pressure | fields: lat, reading, unit, value
Task: Get value from wind_speed where depth appears in pressure readings with matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009431 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: lat, lon, depth, reading
Sensor: evaporation | fields: unit, depth, lat, ts
Task: Get value from frost where reading exceeds the minimum value from evaporation for the same depth.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009432 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: lon, reading, value, depth
Sensor: rainfall | fields: level, qc, reading, lon
Task: Fetch depth from uv_index that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009433 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: level, lat, reading, lon
Sensor: evaporation | fields: type, ts, lon, lat
Task: Retrieve level from wind_speed with reading above the MAX(reading) of evaporation readings sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009434 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: level, lat, ts, unit
Sensor: wind_speed | fields: qc, depth, unit, reading
Task: Fetch lat from rainfall that have at least one corresponding wind_speed measurement for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009435 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: lat, type, lon, level
Sensor: air_quality | fields: level, value, lat, unit
Task: Fetch value from turbidity where unit exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009436 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: depth, ts, type, lat
Sensor: frost | fields: lat, depth, ts, type
Task: Retrieve level from turbidity that have at least one matching reading in frost sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009437 | train |
v3 | Sensor network script:
Node: evaporation | code: ref | fields: type, level, value, lat
Sensor: turbidity | fields: level, lon, type, ts
Task: Fetch lat from evaporation where reading is greater than the total of reading in turbidity for matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009438 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: lon, unit, ts, qc
Sensor: wind_speed | fields: level, qc, lon, unit
Task: Fetch level from lightning that have at least one corresponding wind_speed measurement for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009439 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: qc, level, unit, ts
Sensor: temperature | fields: lat, qc, level, type
Task: Get value from sunlight where qc appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="qc",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009440 | train |
v3 | Sensor network script:
Node: dew_point | code: mst | fields: unit, ts, type, depth
Sensor: sunlight | fields: qc, level, depth, ts
Task: Get reading from dew_point where value exceeds the total depth from sunlight for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009441 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: level, type, value, lon
Sensor: dew_point | fields: lat, value, depth, lon
Task: Retrieve lon from temperature whose depth is found in dew_point records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009442 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: qc, depth, lon, value
Sensor: evaporation | fields: ts, level, reading, qc
Task: Get value from visibility where ts appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009443 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: lat, unit, ts, reading
Sensor: dew_point | fields: reading, value, lat, level
Task: Retrieve depth from sunlight that have at least one matching reading in dew_point sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009444 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: reading, value, level, type
Sensor: drought_index | fields: lat, unit, reading, level
Task: Retrieve reading from uv_index whose unit is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009445 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: depth, type, value, lon
Sensor: frost | fields: reading, lon, ts, level
Task: Get depth from sunlight where depth exceeds the minimum reading from frost for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="ts"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009446 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: ts, value, type, level
Sensor: air_quality | fields: unit, ts, value, qc
Task: Fetch depth from snow_depth where reading is greater than the total of value in air_quality for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009447 | train |
v2 | Sensor network script:
Node: drought_index | code: mst | fields: lat, qc, ts, unit
Sensor: air_quality | fields: unit, qc, ts, level
Task: Fetch lat from drought_index that have at least one corresponding air_quality measurement for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009448 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: qc, type, unit, ts
Sensor: wind_speed | fields: qc, value, type, lat
Task: Get depth from lightning where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009449 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: qc, ts, reading, lat
Sensor: cloud_cover | fields: qc, lon, reading, ts
Task: Fetch value from humidity that have at least one corresponding cloud_cover measurement for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009450 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: depth, lat, unit, level
Sensor: wind_speed | fields: lon, unit, depth, type
Task: Get level from pressure where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009451 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: value, unit, level, qc
Sensor: humidity | fields: value, lat, lon, depth
Task: Fetch level from visibility where depth exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009452 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: lat, type, level, lon
Sensor: visibility | fields: lon, reading, lat, depth
Task: Fetch value from frost where reading is greater than the total of depth in visibility for matching qc.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009453 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: lon, ts, level, qc
Sensor: pressure | fields: lon, lat, value, qc
Task: Retrieve depth from temperature that have at least one matching reading in pressure sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009454 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: type, ts, lat, level
Sensor: rainfall | fields: qc, type, reading, depth
Task: Get level from air_quality where depth appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009455 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: value, ts, unit, lat
Sensor: evaporation | fields: lon, unit, qc, value
Task: Retrieve lat from sunlight with value above the AVG(depth) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009456 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: lat, reading, depth, ts
Sensor: rainfall | fields: unit, reading, ts, type
Task: Get reading from evaporation where a corresponding entry exists in rainfall with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009457 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: value, depth, level, type
Sensor: turbidity | fields: qc, lon, depth, level
Task: Get depth from frost where a corresponding entry exists in turbidity with the same type.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009458 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: qc, reading, lon, ts
Sensor: rainfall | fields: reading, level, qc, depth
Task: Fetch lon from pressure where ts exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009459 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: qc, type, ts, value
Sensor: turbidity | fields: reading, level, qc, type
Task: Fetch reading from air_quality where ts exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009460 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: reading, depth, level, lon
Sensor: frost | fields: reading, qc, unit, value
Task: Retrieve depth from temperature with depth above the AVG(depth) of frost readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009461 | train |
v3 | Sensor network script:
Node: evaporation | code: hub | fields: lat, level, depth, unit
Sensor: drought_index | fields: lon, type, depth, level
Task: Fetch level from evaporation where reading is greater than the total of reading in drought_index for matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009462 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: unit, value, ts, reading
Sensor: soil_moisture | fields: type, ts, lon, depth
Task: Get lat from evaporation where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009463 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: value, type, ts, depth
Sensor: uv_index | fields: depth, level, type, qc
Task: Retrieve lat from cloud_cover with value above the MAX(reading) of uv_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009464 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: depth, level, lon, ts
Sensor: drought_index | fields: lon, ts, value, depth
Task: Retrieve level from turbidity whose depth is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009465 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: unit, lon, reading, lat
Sensor: cloud_cover | fields: qc, reading, lon, value
Task: Retrieve value from temperature that have at least one matching reading in cloud_cover sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009466 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: qc, value, lat, depth
Sensor: wind_speed | fields: unit, value, type, lat
Task: Get depth from rainfall where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009467 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: reading, type, depth, qc
Sensor: wind_speed | fields: reading, type, lat, lon
Task: Retrieve level from cloud_cover that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009468 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: type, lat, ts, depth
Sensor: dew_point | fields: type, reading, value, lon
Task: Retrieve value from cloud_cover whose depth is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009469 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: unit, level, depth, value
Sensor: sunlight | fields: level, lat, value, lon
Task: Get lon from frost where qc appears in sunlight readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009470 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: reading, ts, lat, type
Sensor: soil_moisture | fields: unit, lat, depth, type
Task: Retrieve reading from lightning whose type is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009471 | train |
v3 | Sensor network script:
Node: soil_moisture | code: clr | fields: ts, type, level, qc
Sensor: humidity | fields: lat, depth, lon, value
Task: Retrieve lat from soil_moisture with reading above the MIN(value) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009472 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: unit, lon, ts, qc
Sensor: humidity | fields: unit, reading, lat, depth
Task: Retrieve reading from visibility whose depth is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009473 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: unit, value, depth, type
Sensor: visibility | fields: depth, value, type, qc
Task: Retrieve level from pressure with depth above the MIN(reading) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009474 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: unit, type, qc, depth
Sensor: dew_point | fields: value, ts, unit, depth
Task: Get lat from lightning where value exceeds the minimum depth from dew_point for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009475 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: ts, qc, unit, value
Sensor: evaporation | fields: qc, reading, depth, level
Task: Get reading from lightning where value exceeds the maximum value from evaporation for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009476 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: reading, type, level, value
Sensor: sunlight | fields: type, qc, ts, lat
Task: Fetch level from air_quality that have at least one corresponding sunlight measurement for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009477 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: reading, level, qc, lon
Sensor: turbidity | fields: level, lon, unit, reading
Task: Fetch lat from dew_point where depth exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009478 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: reading, ts, type, qc
Sensor: visibility | fields: lon, qc, depth, level
Task: Retrieve level from humidity with reading above the MIN(reading) of visibility readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("visibility", code="clr"),
match="type"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009479 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: lon, ts, type, lat
Sensor: temperature | fields: lat, depth, qc, lon
Task: Fetch reading from visibility where ts exists in temperature sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="ts",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009480 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: depth, level, unit, ts
Sensor: cloud_cover | fields: type, reading, qc, lon
Task: Get depth from dew_point where unit appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009481 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: qc, lat, type, ts
Sensor: rainfall | fields: ts, unit, value, lat
Task: Fetch reading from snow_depth that have at least one corresponding rainfall measurement for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009482 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: lat, ts, type, reading
Sensor: evaporation | fields: ts, reading, depth, level
Task: Get lat from drought_index where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009483 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: lon, unit, ts, value
Sensor: drought_index | fields: depth, qc, level, lon
Task: Fetch lat from lightning where depth exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="type",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009484 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: level, reading, qc, value
Sensor: frost | fields: level, unit, ts, lat
Task: Retrieve value from uv_index that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009485 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: depth, value, level, reading
Sensor: uv_index | fields: type, reading, unit, ts
Task: Retrieve lon from visibility whose depth is found in uv_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009486 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: type, level, ts, depth
Sensor: uv_index | fields: level, reading, lat, depth
Task: Fetch level from snow_depth that have at least one corresponding uv_index measurement for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009487 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: value, level, lon, lat
Sensor: air_quality | fields: level, unit, qc, lon
Task: Retrieve level from visibility with value above the MAX(reading) of air_quality readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009488 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: lon, unit, type, depth
Sensor: evaporation | fields: level, lat, qc, value
Task: Fetch level from snow_depth that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009489 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: lat, lon, ts, value
Sensor: lightning | fields: depth, reading, level, qc
Task: Fetch depth from evaporation that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009490 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: depth, type, lat, reading
Sensor: dew_point | fields: ts, lat, type, lon
Task: Get level from evaporation where qc appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009491 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: value, lon, reading, depth
Sensor: temperature | fields: level, ts, lon, lat
Task: Fetch lon from turbidity that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_009492 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: depth, lon, reading, level
Sensor: sunlight | fields: lon, ts, lat, level
Task: Retrieve reading from soil_moisture that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009493 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: depth, lon, ts, value
Sensor: cloud_cover | fields: unit, ts, qc, value
Task: Retrieve depth from dew_point whose type is found in cloud_cover records where qc matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009494 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: type, qc, level, value
Sensor: uv_index | fields: level, lat, ts, qc
Task: Fetch lon from dew_point where type exists in uv_index sensor data for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009495 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: unit, depth, qc, reading
Sensor: cloud_cover | fields: type, depth, reading, unit
Task: Fetch lon from turbidity where ts exists in cloud_cover sensor data for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009496 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: qc, reading, lon, value
Sensor: evaporation | fields: type, ts, qc, depth
Task: Fetch value from visibility where ts exists in evaporation sensor data for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009497 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: lon, level, ts, type
Sensor: evaporation | fields: lon, value, lat, depth
Task: Fetch lat from humidity where type exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009498 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: type, unit, qc, reading
Sensor: turbidity | fields: value, unit, ts, level
Task: Get reading from lightning where unit appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_009499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.