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: uv_index | code: stn | fields: unit, depth, value, lat
Sensor: drought_index | fields: depth, lat, reading, value
Task: Retrieve level from uv_index with value above the AVG(value) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001000 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: ts, depth, reading, level
Sensor: wind_speed | fields: reading, qc, depth, type
Task: Get reading from evaporation where depth appears in wind_speed readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001001 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: type, qc, lon, value
Sensor: air_quality | fields: unit, type, ts, lat
Task: Get lat from evaporation where qc appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001002 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: reading, ts, level, qc
Sensor: turbidity | fields: ts, value, qc, unit
Task: Fetch depth from evaporation where type exists in turbidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001003 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: lon, ts, depth, unit
Sensor: rainfall | fields: value, level, lat, depth
Task: Fetch reading from dew_point that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001004 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: level, unit, value, type
Sensor: uv_index | fields: level, value, depth, unit
Task: Retrieve depth from dew_point that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001005 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: depth, reading, value, unit
Sensor: lightning | fields: reading, qc, unit, lat
Task: Get level from cloud_cover where a corresponding entry exists in lightning with the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001006 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: lon, qc, value, lat
Sensor: drought_index | fields: type, unit, depth, lon
Task: Retrieve reading from evaporation with depth above the MIN(value) of drought_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001007 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: depth, type, lat, lon
Sensor: uv_index | fields: ts, lon, depth, reading
Task: Retrieve lon from cloud_cover whose depth is found in uv_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001008 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: qc, lon, depth, ts
Sensor: visibility | fields: level, qc, reading, ts
Task: Fetch value from turbidity where ts exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001009 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: unit, value, lon, ts
Sensor: air_quality | fields: value, qc, lat, unit
Task: Retrieve depth from turbidity whose ts is found in air_quality records where ts matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001010 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: level, ts, value, depth
Sensor: uv_index | fields: lon, ts, lat, reading
Task: Fetch lon from evaporation where type exists in uv_index sensor data for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001011 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: qc, lon, ts, level
Sensor: evaporation | fields: qc, unit, level, lon
Task: Retrieve depth from dew_point whose unit is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001012 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: reading, depth, qc, ts
Sensor: soil_moisture | fields: qc, level, lon, lat
Task: Fetch depth from pressure where value is greater than the minimum of depth in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001013 | train |
v2 | Sensor network script:
Node: drought_index | code: mst | fields: lat, qc, type, level
Sensor: frost | fields: ts, unit, lat, type
Task: Retrieve value from drought_index that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001014 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: qc, type, unit, reading
Sensor: uv_index | fields: depth, lon, qc, reading
Task: Get level from dew_point where type appears in uv_index readings with matching ts.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001015 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: unit, lon, depth, level
Sensor: wind_speed | fields: unit, depth, level, value
Task: Retrieve lon from evaporation whose ts is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001016 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: value, level, depth, lon
Sensor: cloud_cover | fields: level, type, qc, ts
Task: Retrieve reading from turbidity that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001017 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: ts, unit, qc, level
Sensor: visibility | fields: reading, qc, lat, ts
Task: Fetch lon from pressure where depth exists in visibility sensor data for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="ts",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001018 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: qc, value, unit, reading
Sensor: cloud_cover | fields: ts, level, qc, value
Task: Fetch reading from uv_index where depth is greater than the minimum of reading in cloud_cover for matching type.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001019 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: unit, level, lat, depth
Sensor: uv_index | fields: level, lon, unit, reading
Task: Retrieve level from pressure that have at least one matching reading in uv_index sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001020 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: value, qc, depth, unit
Sensor: soil_moisture | fields: type, ts, level, lat
Task: Retrieve reading from turbidity with depth above the AVG(depth) of soil_moisture readings sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "reading",
"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_001021 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: ts, lon, lat, value
Sensor: frost | fields: depth, qc, type, unit
Task: Fetch lat from turbidity that have at least one corresponding frost measurement for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001022 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: reading, type, unit, qc
Sensor: soil_moisture | fields: lat, level, unit, qc
Task: Fetch lon from frost where ts exists in soil_moisture sensor data for the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001023 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: depth, lat, ts, lon
Sensor: rainfall | fields: reading, qc, level, lon
Task: Fetch lat from air_quality where ts exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001024 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: value, depth, level, type
Sensor: turbidity | fields: qc, value, depth, lat
Task: Retrieve reading from air_quality that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001025 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: ts, depth, unit, reading
Sensor: frost | fields: unit, lat, depth, value
Task: Get value from cloud_cover where reading exceeds the minimum depth from frost for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001026 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: ts, reading, lat, lon
Sensor: sunlight | fields: reading, value, depth, lon
Task: Retrieve reading from uv_index whose depth is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001027 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: unit, lat, depth, level
Sensor: cloud_cover | fields: unit, type, level, depth
Task: Get value from soil_moisture where a corresponding entry exists in cloud_cover with the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "soil_moisture",
"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_001028 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: ts, lon, depth, type
Sensor: visibility | fields: unit, type, depth, lon
Task: Retrieve lat from uv_index with reading above the SUM(reading) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001029 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: depth, qc, reading, type
Sensor: soil_moisture | fields: qc, value, lon, type
Task: Get reading from rainfall where unit appears in soil_moisture readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001030 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: depth, ts, qc, level
Sensor: evaporation | fields: unit, value, depth, lon
Task: Fetch value from frost that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001031 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: value, type, level, ts
Sensor: wind_speed | fields: qc, lat, level, value
Task: Get reading from dew_point where a corresponding entry exists in wind_speed with the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001032 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: lon, unit, ts, type
Sensor: visibility | fields: value, reading, lat, unit
Task: Get lat from uv_index where depth appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001033 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: value, qc, ts, type
Sensor: wind_speed | fields: qc, depth, value, ts
Task: Fetch level from temperature where depth is greater than the count of of value in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001034 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: lon, lat, ts, type
Sensor: frost | fields: depth, ts, qc, type
Task: Fetch reading from dew_point where depth exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001035 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: lon, unit, qc, value
Sensor: humidity | fields: unit, lat, depth, ts
Task: Fetch value from evaporation that have at least one corresponding humidity measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001036 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: type, unit, lat, qc
Sensor: pressure | fields: ts, type, qc, reading
Task: Fetch level from uv_index that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001037 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: qc, value, ts, reading
Sensor: drought_index | fields: unit, qc, depth, type
Task: Retrieve depth from uv_index that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001038 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: lon, type, lat, ts
Sensor: dew_point | fields: lat, level, ts, reading
Task: Retrieve lon from wind_speed with depth above the MAX(value) of dew_point readings sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001039 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: value, level, unit, reading
Sensor: snow_depth | fields: unit, value, level, type
Task: Fetch value from air_quality where depth exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001040 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: level, ts, depth, unit
Sensor: turbidity | fields: lat, qc, reading, ts
Task: Retrieve level from drought_index with depth above the AVG(value) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001041 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: lon, lat, type, ts
Sensor: lightning | fields: ts, lon, type, level
Task: Get reading from wind_speed where depth exceeds the minimum depth from lightning for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001042 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: type, lat, depth, level
Sensor: lightning | fields: lat, type, ts, qc
Task: Retrieve reading from sunlight that have at least one matching reading in lightning sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001043 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: lon, level, type, value
Sensor: wind_speed | fields: value, level, reading, unit
Task: Get lon from cloud_cover where value exceeds the count of reading from wind_speed for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001044 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: ts, level, lon, unit
Sensor: pressure | fields: ts, unit, type, level
Task: Get depth from dew_point where unit appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001045 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: lon, ts, unit, lat
Sensor: wind_speed | fields: qc, lat, type, reading
Task: Fetch level from sunlight where ts exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001046 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: lon, value, level, qc
Sensor: cloud_cover | fields: level, value, qc, lon
Task: Fetch value from uv_index that have at least one corresponding cloud_cover measurement for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "uv_index",
"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_001047 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: value, reading, lat, level
Sensor: rainfall | fields: qc, depth, unit, type
Task: Get lat from wind_speed where depth exceeds the maximum reading from rainfall for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001048 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: lon, lat, reading, value
Sensor: evaporation | fields: unit, ts, qc, lat
Task: Retrieve depth from pressure with reading above the MIN(depth) of evaporation readings sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001049 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: unit, type, qc, lat
Sensor: pressure | fields: ts, depth, reading, qc
Task: Get level from wind_speed where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001050 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: qc, reading, depth, lon
Sensor: humidity | fields: unit, lon, depth, value
Task: Fetch value from sunlight where depth is greater than the average of reading in humidity for matching type.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001051 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: lat, value, type, reading
Sensor: soil_moisture | fields: reading, depth, value, type
Task: Fetch lon from frost where unit exists in soil_moisture sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001052 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: type, qc, lon, ts
Sensor: wind_speed | fields: qc, depth, reading, lat
Task: Retrieve depth from drought_index with depth above the MAX(value) of wind_speed readings sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001053 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: reading, lat, lon, depth
Sensor: temperature | fields: lon, type, qc, level
Task: Fetch depth from sunlight where reading is greater than the maximum of reading in temperature for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001054 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: type, depth, qc, lon
Sensor: lightning | fields: reading, value, type, ts
Task: Fetch lat from evaporation where depth exists in lightning sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001055 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: level, depth, lon, type
Sensor: humidity | fields: type, level, reading, depth
Task: Get level from dew_point where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001056 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: type, reading, value, level
Sensor: lightning | fields: level, ts, lon, unit
Task: Retrieve lat from dew_point with value above the AVG(reading) of lightning readings sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001057 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: level, depth, value, qc
Sensor: lightning | fields: ts, lat, depth, reading
Task: Get level from uv_index where type appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001058 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: level, type, depth, value
Sensor: soil_moisture | fields: lon, level, ts, type
Task: Get lon from air_quality where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001059 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: level, unit, ts, lat
Sensor: evaporation | fields: ts, level, type, value
Task: Retrieve value from air_quality whose type is found in evaporation records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001060 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: depth, unit, reading, lon
Sensor: air_quality | fields: level, ts, qc, unit
Task: Retrieve depth from dew_point whose depth is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001061 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: lat, qc, ts, depth
Sensor: drought_index | fields: depth, lat, type, level
Task: Retrieve depth from temperature that have at least one matching reading in drought_index sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001062 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: depth, value, qc, reading
Sensor: frost | fields: qc, value, unit, ts
Task: Retrieve value from lightning with value above the COUNT(value) of frost readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("frost", code="frs"),
match="type"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001063 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: qc, lat, ts, value
Sensor: frost | fields: value, type, unit, level
Task: Get lon from snow_depth where a corresponding entry exists in frost with the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001064 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: qc, depth, lon, type
Sensor: sunlight | fields: value, ts, type, unit
Task: Retrieve level from snow_depth with depth above the AVG(depth) of sunlight readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001065 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: depth, reading, level, unit
Sensor: snow_depth | fields: reading, depth, value, unit
Task: Fetch depth from sunlight where type exists in snow_depth sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001066 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: qc, depth, ts, reading
Sensor: lightning | fields: unit, reading, qc, lon
Task: Retrieve level from evaporation whose unit is found in lightning records where type matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001067 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: depth, lat, reading, value
Sensor: snow_depth | fields: value, qc, lon, type
Task: Get value from humidity where qc appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001068 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: value, unit, qc, lon
Sensor: lightning | fields: unit, depth, ts, type
Task: Get level from air_quality where type appears in lightning readings with matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001069 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: reading, level, type, ts
Sensor: cloud_cover | fields: level, qc, lat, value
Task: Retrieve lat from temperature whose type is found in cloud_cover records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001070 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: level, depth, ts, value
Sensor: wind_speed | fields: unit, qc, value, lon
Task: Get reading from dew_point where a corresponding entry exists in wind_speed with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001071 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: lat, qc, unit, ts
Sensor: visibility | fields: lat, qc, value, unit
Task: Fetch lat from wind_speed that have at least one corresponding visibility measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001072 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: qc, ts, depth, value
Sensor: rainfall | fields: lon, type, value, unit
Task: Retrieve lon from turbidity that have at least one matching reading in rainfall sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001073 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: lon, qc, value, level
Sensor: drought_index | fields: unit, level, lat, lon
Task: Fetch lon from humidity where unit exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001074 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: type, depth, reading, qc
Sensor: pressure | fields: depth, reading, value, ts
Task: Get depth from evaporation where value exceeds the maximum depth from pressure for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001075 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: ts, value, type, reading
Sensor: evaporation | fields: reading, level, lon, unit
Task: Retrieve lon from wind_speed that have at least one matching reading in evaporation sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001076 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: type, reading, depth, unit
Sensor: pressure | fields: lon, ts, qc, depth
Task: Fetch value from temperature that have at least one corresponding pressure measurement for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001077 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: value, lon, level, unit
Sensor: rainfall | fields: type, value, level, depth
Task: Fetch reading from visibility where unit exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001078 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: unit, value, reading, type
Sensor: temperature | fields: value, lon, reading, level
Task: Fetch reading from dew_point where unit exists in temperature sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001079 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: level, type, reading, depth
Sensor: frost | fields: level, unit, depth, value
Task: Fetch depth from temperature that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001080 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: type, level, qc, lon
Sensor: evaporation | fields: ts, type, depth, lat
Task: Retrieve reading from snow_depth whose unit is found in evaporation records where depth matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001081 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: depth, level, unit, lat
Sensor: rainfall | fields: unit, level, depth, value
Task: Fetch level from wind_speed where value is greater than the minimum of reading in rainfall for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001082 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: value, lat, level, ts
Sensor: humidity | fields: level, ts, value, lat
Task: Retrieve lon from drought_index with value above the COUNT(reading) of humidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001083 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: level, unit, value, type
Sensor: uv_index | fields: lon, type, qc, value
Task: Fetch value from snow_depth where unit exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="type",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001084 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: unit, lat, depth, ts
Sensor: cloud_cover | fields: reading, qc, lat, type
Task: Fetch value from humidity that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001085 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: lat, unit, lon, reading
Sensor: sunlight | fields: reading, type, value, level
Task: Fetch value from pressure where reading is greater than the average of depth in sunlight for matching type.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001086 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: reading, level, lat, unit
Sensor: drought_index | fields: depth, level, unit, value
Task: Retrieve level from temperature that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001087 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: ts, unit, qc, type
Sensor: pressure | fields: qc, value, ts, reading
Task: Fetch lat from sunlight where depth is greater than the minimum of depth in pressure for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001088 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: value, ts, type, depth
Sensor: humidity | fields: ts, depth, reading, unit
Task: Get lat from evaporation where value exceeds the maximum depth from humidity for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001089 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: ts, lon, reading, qc
Sensor: cloud_cover | fields: reading, level, depth, lat
Task: Retrieve depth from dew_point whose qc is found in cloud_cover records where type matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001090 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: level, reading, depth, value
Sensor: pressure | fields: ts, lat, lon, unit
Task: Fetch reading from evaporation where qc exists in pressure sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001091 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: qc, unit, ts, type
Sensor: evaporation | fields: value, reading, depth, type
Task: Fetch value from temperature that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001092 | train |
v3 | Sensor network script:
Node: visibility | code: ref | fields: type, lon, reading, level
Sensor: air_quality | fields: lon, depth, unit, ts
Task: Fetch lon from visibility where reading is greater than the count of of value in air_quality for matching qc.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_001093 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: value, depth, lon, level
Sensor: frost | fields: reading, type, lon, lat
Task: Get lon from cloud_cover where a corresponding entry exists in frost with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001094 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: type, lat, level, value
Sensor: uv_index | fields: lon, qc, reading, lat
Task: Retrieve lat from evaporation whose ts is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001095 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: value, lat, unit, reading
Sensor: snow_depth | fields: value, qc, reading, level
Task: Fetch reading from dew_point where depth is greater than the total of reading in snow_depth for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001096 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: unit, qc, lat, ts
Sensor: lightning | fields: type, reading, depth, ts
Task: Get depth from rainfall where unit appears in lightning readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001097 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: ts, qc, depth, reading
Sensor: soil_moisture | fields: depth, ts, type, value
Task: Get lon from lightning where unit appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001098 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: value, lon, unit, ts
Sensor: pressure | fields: unit, depth, type, ts
Task: Get depth from air_quality where depth exceeds the total reading from pressure for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_001099 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.