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: snow_depth | code: thr | fields: type, depth, ts, lon
Sensor: lightning | fields: type, unit, reading, level
Task: Get depth from snow_depth where ts appears in lightning readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078200 | train |
v2 | Sensor network script:
Node: dew_point | code: ref | fields: reading, ts, lat, lon
Sensor: drought_index | fields: ts, depth, value, level
Task: Retrieve depth from dew_point that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078201 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: qc, reading, unit, lon
Sensor: humidity | fields: lon, level, value, type
Task: Get depth from uv_index where type appears in humidity readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078202 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: ts, lon, reading, qc
Sensor: visibility | fields: unit, reading, lat, depth
Task: Fetch lon from dew_point where type exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="type",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078203 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: unit, ts, type, qc
Sensor: uv_index | fields: lon, unit, level, value
Task: Get lon from frost where depth appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078204 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: lat, value, type, unit
Sensor: air_quality | fields: level, ts, depth, lon
Task: Fetch value from wind_speed that have at least one corresponding air_quality measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078205 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: ts, lat, type, depth
Sensor: frost | fields: qc, unit, reading, type
Task: Get value from temperature where a corresponding entry exists in frost with the same qc.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078206 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: qc, level, lat, lon
Sensor: frost | fields: value, ts, depth, lon
Task: Fetch lon from drought_index where depth is greater than the count of of reading in frost for matching type.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078207 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: ts, lon, depth, lat
Sensor: turbidity | fields: lat, type, level, qc
Task: Retrieve value from temperature with depth above the SUM(reading) of turbidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078208 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: depth, level, reading, type
Sensor: uv_index | fields: value, type, ts, level
Task: Retrieve reading 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="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078209 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: type, ts, lon, reading
Sensor: wind_speed | fields: type, unit, qc, ts
Task: Fetch lat from turbidity that have at least one corresponding wind_speed measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078210 | train |
v1 | Sensor network script:
Node: soil_moisture | code: clr | fields: ts, unit, qc, lon
Sensor: pressure | fields: level, value, lon, type
Task: Retrieve reading from soil_moisture whose type is found in pressure records where unit matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078211 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: value, depth, unit, type
Sensor: dew_point | fields: lon, qc, depth, type
Task: Fetch reading from lightning where value is greater than the average of reading in dew_point for matching type.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078212 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: lon, ts, qc, unit
Sensor: rainfall | fields: type, unit, level, qc
Task: Retrieve depth from frost that have at least one matching reading in rainfall sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078213 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: lon, type, qc, reading
Sensor: frost | fields: lat, type, unit, lon
Task: Fetch reading from turbidity where reading is greater than the average of depth in frost for matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078214 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: unit, lon, depth, reading
Sensor: pressure | fields: lat, qc, depth, value
Task: Retrieve value from cloud_cover whose type is found in pressure records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078215 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: ts, type, unit, lon
Sensor: pressure | fields: depth, level, qc, value
Task: Retrieve lon from turbidity that have at least one matching reading in pressure sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078216 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: depth, qc, lat, reading
Sensor: turbidity | fields: reading, ts, type, value
Task: Fetch lat from air_quality that have at least one corresponding turbidity measurement for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078217 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: lon, qc, level, lat
Sensor: frost | fields: level, lon, value, depth
Task: Get lon from cloud_cover where ts appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078218 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: lat, unit, reading, qc
Sensor: pressure | fields: level, value, type, depth
Task: Get level from drought_index where ts appears in pressure readings with matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078219 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: type, depth, value, ts
Sensor: humidity | fields: level, reading, type, qc
Task: Retrieve level from soil_moisture whose depth is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078220 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: depth, ts, lon, level
Sensor: wind_speed | fields: type, ts, reading, level
Task: Fetch lon from turbidity that have at least one corresponding wind_speed measurement for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078221 | train |
v2 | Sensor network script:
Node: air_quality | code: gst | fields: depth, ts, level, lat
Sensor: uv_index | fields: level, lat, unit, lon
Task: Fetch lat from air_quality that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078222 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: type, lon, value, depth
Sensor: evaporation | fields: qc, lat, type, unit
Task: Get level from soil_moisture where value exceeds the average depth from evaporation for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078223 | train |
v2 | Sensor network script:
Node: drought_index | code: mst | fields: qc, value, depth, ts
Sensor: lightning | fields: qc, unit, lon, ts
Task: Retrieve depth from drought_index that have at least one matching reading in lightning sharing the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078224 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: depth, lat, reading, ts
Sensor: wind_speed | fields: type, unit, reading, lon
Task: Retrieve reading from temperature whose depth is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078225 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: depth, level, qc, type
Sensor: dew_point | fields: depth, lat, lon, reading
Task: Get level from lightning where type appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078226 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: level, value, unit, reading
Sensor: lightning | fields: qc, ts, level, value
Task: Get reading from sunlight where depth appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078227 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: reading, lat, qc, level
Sensor: uv_index | fields: lon, level, depth, reading
Task: Get lat from humidity where a corresponding entry exists in uv_index with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078228 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: value, lat, lon, level
Sensor: soil_moisture | fields: lat, ts, depth, qc
Task: Retrieve value from pressure with reading above the COUNT(reading) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078229 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: lon, value, reading, lat
Sensor: wind_speed | fields: depth, reading, ts, type
Task: Retrieve lat from pressure whose ts is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078230 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: reading, type, lat, unit
Sensor: frost | fields: type, ts, qc, reading
Task: Get value from pressure where depth exceeds the average reading from frost for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("frost", code="frs"),
match="unit"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078231 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: lat, reading, depth, value
Sensor: frost | fields: value, lon, depth, lat
Task: Fetch lat from humidity that have at least one corresponding frost measurement for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078232 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: reading, type, unit, qc
Sensor: visibility | fields: depth, reading, ts, qc
Task: Get reading from uv_index where unit appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078233 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: value, type, level, reading
Sensor: uv_index | fields: reading, qc, value, type
Task: Retrieve value from temperature that have at least one matching reading in uv_index sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078234 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: qc, ts, lat, type
Sensor: wind_speed | fields: lat, reading, value, unit
Task: Fetch value from rainfall where depth exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078235 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: qc, depth, type, reading
Sensor: uv_index | fields: unit, value, lat, level
Task: Fetch reading from frost where reading is greater than the total of reading in uv_index for matching ts.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078236 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: lon, level, lat, type
Sensor: lightning | fields: lat, ts, value, lon
Task: Get lat from snow_depth where unit appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078237 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: value, reading, lat, qc
Sensor: turbidity | fields: depth, ts, lat, qc
Task: Retrieve depth from evaporation that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078238 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: unit, ts, reading, qc
Sensor: drought_index | fields: lon, value, reading, lat
Task: Get lon from uv_index where depth appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078239 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: ts, value, depth, qc
Sensor: dew_point | fields: value, qc, type, lon
Task: Get depth from uv_index where qc appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078240 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: level, unit, lon, value
Sensor: pressure | fields: type, depth, value, qc
Task: Get value from cloud_cover where reading exceeds the minimum reading from pressure for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078241 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: level, depth, reading, type
Sensor: turbidity | fields: lon, level, value, depth
Task: Retrieve depth from sunlight with reading above the COUNT(reading) of turbidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078242 | train |
v3 | Sensor network script:
Node: snow_depth | code: clr | fields: lon, type, depth, reading
Sensor: turbidity | fields: level, unit, value, type
Task: Fetch reading from snow_depth where value is greater than the total of value in turbidity for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078243 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: lon, level, lat, reading
Sensor: dew_point | fields: unit, depth, ts, qc
Task: Retrieve depth from turbidity that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078244 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: value, lon, level, depth
Sensor: dew_point | fields: ts, depth, qc, type
Task: Retrieve value from sunlight with reading above the AVG(depth) of dew_point readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078245 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: ts, level, reading, depth
Sensor: soil_moisture | fields: reading, value, depth, level
Task: Get level from turbidity where value exceeds the average reading from soil_moisture for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078246 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: depth, lat, reading, unit
Sensor: frost | fields: reading, unit, lat, ts
Task: Fetch level from lightning where depth is greater than the minimum of reading in frost for matching type.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078247 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: qc, reading, lon, ts
Sensor: cloud_cover | fields: type, depth, ts, level
Task: Fetch lat from temperature where qc exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078248 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: lat, lon, depth, level
Sensor: snow_depth | fields: ts, depth, level, unit
Task: Fetch value from wind_speed where depth is greater than the total of depth in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078249 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: level, ts, value, type
Sensor: frost | fields: lat, qc, reading, lon
Task: Retrieve lat from lightning whose depth is found in frost records where ts matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078250 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: ts, qc, level, depth
Sensor: rainfall | fields: level, depth, ts, lat
Task: Get lon from cloud_cover where value exceeds the minimum depth from rainfall for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078251 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: level, value, ts, depth
Sensor: wind_speed | fields: lon, type, ts, depth
Task: Fetch value from air_quality where value is greater than the count of of reading in wind_speed for matching type.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078252 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: type, unit, lon, depth
Sensor: humidity | fields: lon, lat, ts, type
Task: Get lon from turbidity where value exceeds the average depth from humidity for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078253 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: lon, qc, value, type
Sensor: humidity | fields: ts, type, lat, depth
Task: Retrieve value from soil_moisture with depth above the MIN(value) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078254 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: unit, value, lon, level
Sensor: soil_moisture | fields: unit, level, depth, reading
Task: Get value from dew_point where qc appears in soil_moisture readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078255 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: value, depth, type, level
Sensor: dew_point | fields: lon, reading, ts, depth
Task: Get lat from soil_moisture where a corresponding entry exists in dew_point with the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078256 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: type, lon, value, unit
Sensor: sunlight | fields: reading, level, ts, type
Task: Get reading from visibility where a corresponding entry exists in sunlight with the same depth.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078257 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: level, lon, ts, unit
Sensor: temperature | fields: level, ts, lat, depth
Task: Retrieve lat from uv_index that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078258 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: level, type, depth, reading
Sensor: dew_point | fields: unit, depth, level, value
Task: Get level from drought_index where a corresponding entry exists in dew_point with the same type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078259 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: ts, lat, depth, lon
Sensor: turbidity | fields: value, level, depth, type
Task: Fetch value from visibility that have at least one corresponding turbidity measurement for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078260 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: qc, reading, lat, value
Sensor: soil_moisture | fields: value, type, qc, ts
Task: Get lon from humidity where a corresponding entry exists in soil_moisture with the same ts.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078261 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: lat, unit, depth, level
Sensor: humidity | fields: lat, value, ts, qc
Task: Fetch level from turbidity that have at least one corresponding humidity measurement for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078262 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: qc, unit, reading, lat
Sensor: rainfall | fields: lat, type, level, ts
Task: Retrieve level from uv_index that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078263 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: level, reading, ts, lon
Sensor: visibility | fields: ts, qc, lon, depth
Task: Retrieve level from turbidity with depth above the COUNT(reading) of visibility readings sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078264 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: depth, level, lat, unit
Sensor: snow_depth | fields: level, lon, lat, depth
Task: Get value from lightning where ts appears in snow_depth readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078265 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: lat, level, unit, value
Sensor: snow_depth | fields: lat, unit, type, lon
Task: Get lat from cloud_cover where depth exceeds the minimum reading from snow_depth for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078266 | train |
v3 | Sensor network script:
Node: sunlight | code: thr | fields: lon, unit, type, value
Sensor: evaporation | fields: qc, ts, level, unit
Task: Get reading from sunlight where depth exceeds the maximum reading from evaporation for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078267 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: depth, qc, ts, level
Sensor: humidity | fields: unit, type, lon, depth
Task: Fetch value from cloud_cover where type exists in humidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078268 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: depth, value, reading, type
Sensor: turbidity | fields: depth, lat, ts, lon
Task: Retrieve value from pressure that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078269 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: lon, reading, qc, level
Sensor: snow_depth | fields: value, level, type, ts
Task: Retrieve reading from lightning whose qc is found in snow_depth records where unit matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078270 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: unit, level, lat, depth
Sensor: uv_index | fields: lat, depth, type, level
Task: Get depth from air_quality where ts appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078271 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: unit, type, lon, value
Sensor: turbidity | fields: value, depth, lat, unit
Task: Get lon from cloud_cover where a corresponding entry exists in turbidity with the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078272 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: type, ts, unit, value
Sensor: snow_depth | fields: unit, reading, lat, lon
Task: Get reading from visibility where a corresponding entry exists in snow_depth with the same type.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078273 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: lat, depth, reading, lon
Sensor: air_quality | fields: unit, lat, value, level
Task: Fetch lon from dew_point where qc exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078274 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: reading, lon, level, depth
Sensor: evaporation | fields: value, type, depth, reading
Task: Retrieve value from sunlight whose unit is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078275 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: type, ts, reading, level
Sensor: temperature | fields: unit, reading, type, value
Task: Get lon from rainfall where value exceeds the maximum depth from temperature for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078276 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: reading, value, type, ts
Sensor: drought_index | fields: depth, lat, lon, reading
Task: Get value from snow_depth where depth exceeds the total value from drought_index for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078277 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: lon, type, lat, value
Sensor: soil_moisture | fields: reading, qc, value, ts
Task: Retrieve level from sunlight that have at least one matching reading in soil_moisture sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078278 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: level, type, lat, ts
Sensor: drought_index | fields: reading, qc, depth, lat
Task: Fetch value from evaporation where value is greater than the minimum of depth in drought_index for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078279 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: depth, unit, lat, qc
Sensor: soil_moisture | fields: reading, ts, unit, qc
Task: Retrieve lon from rainfall that have at least one matching reading in soil_moisture sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078280 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: lon, ts, depth, lat
Sensor: lightning | fields: level, value, lat, lon
Task: Retrieve value from visibility with value above the COUNT(reading) of lightning readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078281 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: type, value, qc, unit
Sensor: sunlight | fields: level, qc, ts, depth
Task: Retrieve lat from evaporation that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078282 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: lon, type, lat, value
Sensor: temperature | fields: value, unit, lat, reading
Task: Fetch level from turbidity where value is greater than the average of depth in temperature for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078283 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: lat, unit, type, ts
Sensor: humidity | fields: level, lat, unit, depth
Task: Retrieve level from uv_index whose type is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078284 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: ts, reading, type, unit
Sensor: visibility | fields: value, ts, level, qc
Task: Get level from soil_moisture where value exceeds the count of reading from visibility for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078285 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: qc, type, depth, lat
Sensor: air_quality | fields: unit, value, reading, lon
Task: Retrieve level from cloud_cover with value above the SUM(value) of air_quality readings sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078286 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: unit, depth, level, qc
Sensor: humidity | fields: ts, lon, value, lat
Task: Fetch value from pressure where depth exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078287 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: lon, reading, qc, type
Sensor: rainfall | fields: level, ts, type, lat
Task: Get value from temperature where depth appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078288 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: ts, depth, reading, type
Sensor: sunlight | fields: ts, depth, lat, lon
Task: Fetch depth from air_quality where value is greater than the maximum of value in sunlight for matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078289 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: depth, level, value, unit
Sensor: frost | fields: depth, level, unit, value
Task: Retrieve level from cloud_cover that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078290 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: depth, type, lon, ts
Sensor: pressure | fields: depth, lon, value, qc
Task: Get reading from evaporation where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078291 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: reading, qc, lon, value
Sensor: dew_point | fields: level, value, ts, reading
Task: Retrieve level from drought_index that have at least one matching reading in dew_point sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078292 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: lat, qc, type, reading
Sensor: dew_point | fields: depth, ts, unit, qc
Task: Retrieve depth from snow_depth that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078293 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: reading, unit, ts, type
Sensor: pressure | fields: reading, depth, value, lat
Task: Retrieve lat from dew_point with reading above the MIN(depth) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078294 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, depth, type, lat
Sensor: turbidity | fields: depth, lat, qc, type
Task: Retrieve lon from snow_depth whose ts is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078295 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: lat, level, qc, reading
Sensor: rainfall | fields: ts, lon, reading, value
Task: Get depth from temperature where type appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078296 | train |
v3 | Sensor network script:
Node: visibility | code: stn | fields: depth, level, reading, ts
Sensor: pressure | fields: lat, unit, depth, level
Task: Fetch lat from visibility where depth is greater than the minimum of depth in pressure for matching type.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078297 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: lon, value, ts, reading
Sensor: humidity | fields: type, depth, reading, level
Task: Fetch reading from cloud_cover where ts exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078298 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: unit, qc, lat, reading
Sensor: visibility | fields: level, lat, reading, value
Task: Fetch lon from sunlight where type exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078299 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.