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: lightning | code: mst | fields: type, reading, level, lon
Sensor: soil_moisture | fields: ts, lon, level, unit
Task: Fetch lat from lightning where type exists in soil_moisture sensor data for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023700 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: level, type, value, depth
Sensor: humidity | fields: lon, ts, value, reading
Task: Get depth from lightning where a corresponding entry exists in humidity with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023701 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: depth, qc, unit, value
Sensor: snow_depth | fields: depth, lat, unit, value
Task: Fetch depth from humidity that have at least one corresponding snow_depth measurement for the same type.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023702 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: qc, depth, ts, unit
Sensor: turbidity | fields: reading, qc, type, lon
Task: Get lon from snow_depth where a corresponding entry exists in turbidity with the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023703 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: reading, qc, depth, type
Sensor: temperature | fields: value, type, reading, unit
Task: Fetch level from soil_moisture where value is greater than the average of reading in temperature for matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("temperature", code="thr"),
match="type"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023704 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: unit, type, depth, ts
Sensor: uv_index | fields: depth, reading, lat, ts
Task: Fetch reading from snow_depth that have at least one corresponding uv_index measurement for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023705 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: lat, level, lon, ts
Sensor: wind_speed | fields: lat, ts, level, qc
Task: Fetch lon from sunlight that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023706 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: level, unit, value, qc
Sensor: rainfall | fields: type, lat, lon, ts
Task: Get reading from frost where qc appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023707 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: level, lon, lat, ts
Sensor: evaporation | fields: level, reading, unit, depth
Task: Retrieve level from frost with value above the MAX(value) of evaporation readings sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023708 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: qc, reading, unit, ts
Sensor: temperature | fields: ts, type, level, reading
Task: Fetch level from cloud_cover that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023709 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: level, value, reading, ts
Sensor: snow_depth | fields: value, lon, type, level
Task: Retrieve lon from visibility that have at least one matching reading in snow_depth sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023710 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: reading, ts, depth, level
Sensor: uv_index | fields: qc, reading, type, depth
Task: Get level from drought_index where depth exceeds the count of depth from uv_index for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023711 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: level, qc, type, lat
Sensor: visibility | fields: depth, value, ts, type
Task: Get level from turbidity where reading exceeds the maximum value from visibility for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023712 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: level, reading, type, depth
Sensor: soil_moisture | fields: lon, type, depth, qc
Task: Get lat from lightning where qc appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023713 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: depth, ts, type, reading
Sensor: lightning | fields: unit, qc, depth, ts
Task: Retrieve value from soil_moisture with reading above the MIN(depth) of lightning readings sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023714 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: type, ts, level, unit
Sensor: humidity | fields: lon, lat, depth, reading
Task: Retrieve value from soil_moisture whose depth is found in humidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023715 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: unit, reading, lat, qc
Sensor: dew_point | fields: depth, ts, lon, unit
Task: Get reading from uv_index where qc appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023716 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: level, reading, lon, depth
Sensor: wind_speed | fields: type, level, reading, depth
Task: Retrieve lat from evaporation whose qc is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023717 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: reading, level, type, lon
Sensor: drought_index | fields: lon, ts, level, type
Task: Retrieve reading from cloud_cover that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023718 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: type, qc, reading, depth
Sensor: dew_point | fields: lat, value, unit, depth
Task: Get lon from temperature where depth appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023719 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: qc, depth, lat, unit
Sensor: humidity | fields: value, ts, qc, lon
Task: Get lat from temperature where reading exceeds the maximum value from humidity for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023720 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: type, value, ts, depth
Sensor: temperature | fields: depth, lon, lat, reading
Task: Retrieve reading from humidity that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023721 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: qc, level, reading, lat
Sensor: snow_depth | fields: value, lon, level, ts
Task: Retrieve lon from uv_index whose ts is found in snow_depth records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023722 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: level, value, lat, ts
Sensor: soil_moisture | fields: lon, type, ts, unit
Task: Fetch reading from dew_point where reading is greater than the average of value in soil_moisture for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023723 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: qc, ts, reading, unit
Sensor: air_quality | fields: qc, depth, value, type
Task: Fetch reading from rainfall where type exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023724 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: unit, lon, value, lat
Sensor: wind_speed | fields: lon, lat, value, qc
Task: Retrieve level from soil_moisture whose ts is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023725 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: reading, depth, value, ts
Sensor: turbidity | fields: value, unit, type, lat
Task: Retrieve lon from soil_moisture that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023726 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: unit, reading, lon, type
Sensor: humidity | fields: lon, qc, unit, level
Task: Get lat from frost where a corresponding entry exists in humidity with the same depth.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023727 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: level, reading, lat, qc
Sensor: dew_point | fields: lat, level, unit, reading
Task: Fetch depth from drought_index where type exists in dew_point sensor data for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023728 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: lat, qc, level, lon
Sensor: wind_speed | fields: lon, type, unit, value
Task: Retrieve level from snow_depth with value above the MAX(reading) of wind_speed readings sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023729 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: value, level, ts, lon
Sensor: soil_moisture | fields: value, depth, type, unit
Task: Retrieve reading from sunlight whose type is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023730 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: unit, depth, qc, value
Sensor: soil_moisture | fields: type, value, lon, reading
Task: Fetch depth from snow_depth where reading is greater than the minimum of value in soil_moisture for matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023731 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: depth, qc, reading, lat
Sensor: drought_index | fields: level, reading, qc, type
Task: Fetch lat from wind_speed that have at least one corresponding drought_index measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023732 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: unit, type, lat, qc
Sensor: air_quality | fields: lon, value, qc, ts
Task: Get lat from pressure where qc appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023733 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: qc, reading, lon, value
Sensor: humidity | fields: lon, depth, ts, type
Task: Retrieve depth from uv_index with reading above the SUM(value) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023734 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: lat, unit, type, lon
Sensor: pressure | fields: level, unit, type, qc
Task: Get value from sunlight where unit appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023735 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: level, ts, type, unit
Sensor: rainfall | fields: reading, lat, type, qc
Task: Retrieve value from sunlight whose type is found in rainfall records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023736 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: depth, unit, level, reading
Sensor: uv_index | fields: reading, ts, lat, type
Task: Fetch lat from wind_speed where depth is greater than the total of reading in uv_index for matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023737 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: lon, reading, type, lat
Sensor: frost | fields: lat, depth, qc, lon
Task: Get value from pressure where reading exceeds the total reading from frost for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="qc"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023738 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: ts, qc, unit, reading
Sensor: uv_index | fields: reading, level, depth, lon
Task: Retrieve depth 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="depth",
) | {
"outer_table": "pressure",
"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_023739 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: reading, qc, lat, depth
Sensor: wind_speed | fields: type, ts, value, reading
Task: Fetch level from drought_index where reading is greater than the maximum of reading in wind_speed for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023740 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: depth, level, reading, type
Sensor: drought_index | fields: depth, qc, reading, value
Task: Retrieve level from dew_point that have at least one matching reading in drought_index sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023741 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: type, ts, qc, level
Sensor: pressure | fields: depth, level, type, reading
Task: Get level from cloud_cover where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023742 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: qc, ts, lat, depth
Sensor: evaporation | fields: level, type, lat, lon
Task: Fetch reading from wind_speed that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023743 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: reading, value, lon, lat
Sensor: frost | fields: type, lat, lon, ts
Task: Retrieve lon from pressure that have at least one matching reading in frost sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023744 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: qc, lat, type, value
Sensor: humidity | fields: depth, lon, level, qc
Task: Retrieve level from sunlight whose ts is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023745 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: value, depth, type, level
Sensor: cloud_cover | fields: lon, value, type, unit
Task: Get value from dew_point where a corresponding entry exists in cloud_cover with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023746 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: unit, level, lat, qc
Sensor: drought_index | fields: lon, qc, lat, ts
Task: Fetch level from snow_depth that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023747 | train |
v2 | Sensor network script:
Node: visibility | code: prt | fields: depth, ts, lon, lat
Sensor: drought_index | fields: lon, unit, value, qc
Task: Retrieve reading from visibility that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023748 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: reading, level, lat, unit
Sensor: dew_point | fields: value, lon, type, level
Task: Fetch level from turbidity where reading is greater than the total of reading in dew_point for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023749 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: type, depth, unit, ts
Sensor: evaporation | fields: ts, type, depth, lat
Task: Get lon from dew_point where depth exceeds the total depth from evaporation for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023750 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: reading, lon, lat, qc
Sensor: dew_point | fields: ts, depth, value, lat
Task: Fetch level from turbidity where value is greater than the average of reading in dew_point for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023751 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: reading, level, lon, unit
Sensor: turbidity | fields: unit, qc, type, lon
Task: Retrieve depth from lightning whose type is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023752 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: type, value, lat, level
Sensor: temperature | fields: ts, reading, depth, value
Task: Get depth from cloud_cover where qc appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023753 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: unit, type, value, ts
Sensor: frost | fields: reading, ts, qc, unit
Task: Retrieve depth from sunlight whose ts is found in frost records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023754 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: reading, ts, lon, lat
Sensor: frost | fields: qc, type, value, ts
Task: Get reading from air_quality where value exceeds the maximum value from frost for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023755 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: unit, depth, reading, value
Sensor: turbidity | fields: level, value, unit, qc
Task: Fetch depth from rainfall where value is greater than the minimum of reading in turbidity for matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023756 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: type, depth, ts, lon
Sensor: air_quality | fields: depth, qc, level, type
Task: Fetch lat from drought_index where value is greater than the average of depth in air_quality for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023757 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: type, reading, lon, ts
Sensor: rainfall | fields: lat, level, depth, lon
Task: Get value from temperature where reading exceeds the maximum reading from rainfall for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023758 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: value, level, unit, qc
Sensor: rainfall | fields: lon, reading, type, ts
Task: Get value from drought_index where depth exceeds the count of reading from rainfall for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023759 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: level, lon, ts, unit
Sensor: drought_index | fields: lat, value, type, qc
Task: Retrieve reading from cloud_cover whose qc is found in drought_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023760 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: reading, value, unit, lat
Sensor: temperature | fields: unit, lat, depth, reading
Task: Retrieve level from humidity with reading above the MAX(value) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023761 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: type, lat, lon, value
Sensor: humidity | fields: level, ts, type, lon
Task: Fetch lon from snow_depth where depth exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023762 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: ts, reading, value, level
Sensor: uv_index | fields: depth, lon, level, qc
Task: Fetch lon from turbidity that have at least one corresponding uv_index measurement for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023763 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: reading, lat, value, type
Sensor: turbidity | fields: type, reading, qc, level
Task: Get lat from rainfall where reading exceeds the average value from turbidity for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023764 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: reading, value, lon, level
Sensor: air_quality | fields: level, lon, ts, type
Task: Retrieve depth from temperature whose unit is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023765 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: lon, lat, level, value
Sensor: humidity | fields: lat, value, type, lon
Task: Retrieve level from soil_moisture with value above the SUM(reading) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023766 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: lat, ts, level, value
Sensor: cloud_cover | fields: reading, unit, qc, value
Task: Get lon from drought_index where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023767 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: value, depth, qc, reading
Sensor: dew_point | fields: value, lat, lon, type
Task: Get depth from temperature where a corresponding entry exists in dew_point with the same type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023768 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: reading, type, depth, qc
Sensor: rainfall | fields: ts, unit, value, reading
Task: Get depth from lightning where a corresponding entry exists in rainfall with the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023769 | train |
v1 | Sensor network script:
Node: turbidity | code: clr | fields: value, depth, reading, type
Sensor: soil_moisture | fields: lat, ts, value, qc
Task: Retrieve value from turbidity whose type is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023770 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: ts, qc, unit, depth
Sensor: turbidity | fields: reading, depth, ts, unit
Task: Fetch value from cloud_cover where reading is greater than the minimum of reading in turbidity for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023771 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: type, value, unit, level
Sensor: uv_index | fields: value, level, reading, ts
Task: Retrieve lon from rainfall whose type is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023772 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: lon, ts, value, type
Sensor: drought_index | fields: level, value, lon, qc
Task: Fetch value from turbidity where value is greater than the total of depth in drought_index for matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023773 | train |
v3 | Sensor network script:
Node: humidity | code: prt | fields: lon, depth, value, lat
Sensor: evaporation | fields: lat, qc, depth, value
Task: Retrieve level from humidity with reading above the AVG(depth) of evaporation readings sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023774 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: value, unit, depth, reading
Sensor: drought_index | fields: reading, ts, lon, qc
Task: Retrieve reading from soil_moisture with depth above the MAX(reading) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023775 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: reading, lon, lat, value
Sensor: frost | fields: lon, depth, lat, type
Task: Fetch level from evaporation where ts exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="unit",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023776 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: lat, lon, qc, reading
Sensor: temperature | fields: unit, lat, reading, qc
Task: Get lat from visibility where a corresponding entry exists in temperature with the same ts.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023777 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: lon, value, lat, type
Sensor: uv_index | fields: value, type, unit, lon
Task: Fetch reading from rainfall where value is greater than the minimum of reading in uv_index for matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023778 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: unit, type, lon, reading
Sensor: pressure | fields: level, unit, reading, ts
Task: Fetch level from wind_speed where depth is greater than the count of of reading in pressure for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023779 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: depth, level, value, unit
Sensor: visibility | fields: reading, lat, type, ts
Task: Get reading from drought_index where a corresponding entry exists in visibility with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023780 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: unit, ts, qc, lat
Sensor: wind_speed | fields: type, lon, ts, reading
Task: Retrieve depth from evaporation with depth above the MIN(reading) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023781 | train |
v2 | Sensor network script:
Node: uv_index | code: gst | fields: lon, reading, qc, ts
Sensor: turbidity | fields: lon, type, qc, reading
Task: Retrieve level from uv_index that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023782 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: ts, qc, level, type
Sensor: temperature | fields: ts, unit, depth, type
Task: Fetch lat from soil_moisture that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023783 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: level, lon, qc, lat
Sensor: turbidity | fields: unit, type, ts, lon
Task: Fetch value from lightning where ts exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023784 | train |
v3 | Sensor network script:
Node: snow_depth | code: prt | fields: unit, qc, depth, lon
Sensor: uv_index | fields: unit, qc, type, reading
Task: Fetch lat from snow_depth where value is greater than the minimum of reading in uv_index for matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023785 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: type, reading, ts, value
Sensor: air_quality | fields: lat, level, depth, ts
Task: Fetch lon from visibility that have at least one corresponding air_quality measurement for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023786 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: reading, depth, type, value
Sensor: dew_point | fields: value, level, unit, type
Task: Get lat from temperature where ts appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023787 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: reading, qc, depth, lat
Sensor: frost | fields: level, qc, lon, type
Task: Fetch value from humidity where qc exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="unit",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023788 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: value, reading, lat, qc
Sensor: rainfall | fields: value, ts, type, level
Task: Fetch lon from air_quality where reading is greater than the average of reading in rainfall for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023789 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: reading, depth, type, lon
Sensor: cloud_cover | fields: reading, level, unit, lon
Task: Fetch lon from lightning that have at least one corresponding cloud_cover measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023790 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: level, reading, value, lat
Sensor: lightning | fields: qc, level, depth, unit
Task: Get value from drought_index where type appears in lightning readings with matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023791 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: lat, type, ts, unit
Sensor: drought_index | fields: lon, unit, qc, type
Task: Retrieve lat from pressure that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023792 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: level, type, value, ts
Sensor: soil_moisture | fields: depth, unit, qc, value
Task: Retrieve depth from lightning whose type is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023793 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: ts, reading, lon, unit
Sensor: visibility | fields: ts, depth, level, lon
Task: Fetch lat from cloud_cover where reading is greater than the maximum of depth in visibility for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023794 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: qc, unit, lat, level
Sensor: sunlight | fields: depth, qc, type, lon
Task: Retrieve lon from turbidity that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023795 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: lat, value, type, ts
Sensor: dew_point | fields: level, lat, depth, value
Task: Fetch lat from turbidity where qc exists in dew_point sensor data for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023796 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: value, lon, level, reading
Sensor: wind_speed | fields: qc, reading, lon, unit
Task: Fetch lat from turbidity where unit exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023797 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: ts, lon, depth, lat
Sensor: temperature | fields: reading, ts, level, type
Task: Retrieve lat from visibility that have at least one matching reading in temperature sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023798 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: qc, lat, reading, value
Sensor: turbidity | fields: lon, qc, unit, lat
Task: Fetch reading from humidity that have at least one corresponding turbidity measurement for the same type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.