variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: turbidity | code: hub | fields: value, lon, depth, reading
Sensor: humidity | fields: ts, type, qc, value
Task: Fetch value from turbidity where depth is greater than the count of of value in humidity for matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070500 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: reading, lon, depth, type
Sensor: soil_moisture | fields: value, ts, unit, qc
Task: Get lat from dew_point where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070501 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: unit, qc, lat, ts
Sensor: drought_index | fields: value, qc, lat, reading
Task: Retrieve reading from uv_index whose depth is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070502 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: ts, lat, unit, lon
Sensor: cloud_cover | fields: type, lat, unit, ts
Task: Fetch lat from uv_index where type exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070503 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: lon, depth, type, unit
Sensor: wind_speed | fields: lon, type, level, value
Task: Retrieve level from dew_point with depth above the COUNT(depth) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070504 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: lat, type, depth, level
Sensor: cloud_cover | fields: qc, ts, type, depth
Task: Get lon from snow_depth where depth exceeds the average value from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070505 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: level, value, lat, unit
Sensor: visibility | fields: depth, unit, value, ts
Task: Get lon from humidity where a corresponding entry exists in visibility with the same ts.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070506 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: level, ts, depth, unit
Sensor: wind_speed | fields: reading, ts, value, depth
Task: Fetch lat from snow_depth where unit exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070507 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: type, ts, unit, lat
Sensor: uv_index | fields: unit, qc, type, reading
Task: Get lon from wind_speed where value exceeds the minimum depth from uv_index for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070508 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: qc, level, unit, reading
Sensor: temperature | fields: lat, depth, lon, reading
Task: Retrieve lat from uv_index with reading above the AVG(depth) of temperature readings sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070509 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: ts, qc, lat, level
Sensor: turbidity | fields: unit, lon, type, depth
Task: Retrieve lat from pressure that have at least one matching reading in turbidity sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070510 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: ts, depth, lat, type
Sensor: humidity | fields: unit, qc, type, depth
Task: Get level from pressure where qc appears in humidity readings with matching depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070511 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: lat, lon, level, qc
Sensor: pressure | fields: type, value, lat, qc
Task: Get depth from air_quality where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070512 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: qc, lat, depth, ts
Sensor: humidity | fields: ts, lat, value, unit
Task: Fetch depth from wind_speed where value is greater than the count of of value in humidity for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070513 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: reading, unit, lon, depth
Sensor: rainfall | fields: ts, level, value, unit
Task: Retrieve reading from cloud_cover whose ts is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070514 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: lon, depth, level, lat
Sensor: humidity | fields: qc, value, lon, reading
Task: Fetch level from visibility where unit exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070515 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: depth, type, ts, lat
Sensor: rainfall | fields: reading, depth, ts, level
Task: Get value from uv_index where depth appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070516 | train |
v3 | Sensor network script:
Node: rainfall | code: ref | fields: reading, lon, qc, depth
Sensor: cloud_cover | fields: type, ts, depth, lon
Task: Get depth from rainfall where reading exceeds the maximum reading from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070517 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: value, unit, ts, qc
Sensor: humidity | fields: value, ts, reading, depth
Task: Get reading from air_quality where a corresponding entry exists in humidity with the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070518 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: reading, depth, ts, type
Sensor: frost | fields: qc, lon, value, reading
Task: Fetch value from snow_depth where value is greater than the total of value in frost for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070519 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: ts, reading, type, unit
Sensor: uv_index | fields: depth, level, lat, type
Task: Fetch depth from snow_depth where depth is greater than the maximum of reading in uv_index for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070520 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: lat, unit, value, lon
Sensor: cloud_cover | fields: unit, type, depth, level
Task: Get value from visibility where depth appears in cloud_cover readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070521 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: lon, depth, unit, qc
Sensor: soil_moisture | fields: type, depth, value, level
Task: Fetch depth from dew_point where unit exists in soil_moisture sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070522 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: qc, type, unit, depth
Sensor: sunlight | fields: unit, type, qc, ts
Task: Get depth from turbidity where type appears in sunlight readings with matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070523 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: depth, reading, level, qc
Sensor: rainfall | fields: ts, lon, reading, unit
Task: Fetch depth from soil_moisture where qc exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070524 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: lon, unit, value, depth
Sensor: dew_point | fields: value, unit, reading, lat
Task: Get value from sunlight where value exceeds the minimum depth from dew_point for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070525 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: unit, reading, qc, ts
Sensor: lightning | fields: type, qc, reading, unit
Task: Retrieve lon from visibility whose unit is found in lightning records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070526 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: value, qc, unit, type
Sensor: soil_moisture | fields: value, ts, lat, lon
Task: Fetch level from uv_index where type exists in soil_moisture sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070527 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: value, depth, lon, level
Sensor: temperature | fields: reading, level, qc, type
Task: Retrieve lon from cloud_cover whose qc is found in temperature records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070528 | train |
v2 | Sensor network script:
Node: snow_depth | code: ref | fields: lat, lon, value, reading
Sensor: temperature | fields: type, unit, qc, lon
Task: Fetch level from snow_depth that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070529 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: depth, type, lat, reading
Sensor: drought_index | fields: reading, value, ts, type
Task: Fetch lon from visibility where unit exists in drought_index sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070530 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: type, qc, ts, reading
Sensor: drought_index | fields: type, reading, level, unit
Task: Get value from dew_point where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070531 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: value, level, qc, lon
Sensor: pressure | fields: qc, lat, depth, type
Task: Get value from cloud_cover where qc appears in pressure readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070532 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: reading, type, level, value
Sensor: dew_point | fields: depth, reading, qc, value
Task: Get lon from uv_index where unit appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070533 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: level, unit, reading, ts
Sensor: drought_index | fields: depth, reading, unit, lon
Task: Get lon from dew_point where a corresponding entry exists in drought_index with the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070534 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: level, depth, value, lat
Sensor: frost | fields: lon, ts, depth, level
Task: Fetch lon from evaporation where type exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070535 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: level, value, lat, depth
Sensor: turbidity | fields: level, type, depth, ts
Task: Retrieve lon from visibility that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070536 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: lat, level, depth, value
Sensor: frost | fields: ts, depth, level, qc
Task: Fetch reading from temperature where depth is greater than the total of reading in frost for matching depth.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070537 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: level, lon, value, lat
Sensor: cloud_cover | fields: lon, qc, depth, type
Task: Retrieve reading from rainfall that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070538 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: type, reading, lat, depth
Sensor: humidity | fields: reading, level, lat, unit
Task: Fetch depth from air_quality where type exists in humidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070539 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: lat, type, value, reading
Sensor: air_quality | fields: depth, value, ts, lat
Task: Fetch value from visibility where type exists in air_quality sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070540 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: unit, level, value, depth
Sensor: cloud_cover | fields: lon, depth, reading, unit
Task: Get reading from visibility where depth appears in cloud_cover readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070541 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: ts, lon, level, depth
Sensor: rainfall | fields: ts, unit, type, value
Task: Retrieve lon from turbidity whose type is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070542 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: level, depth, value, reading
Sensor: turbidity | fields: lat, type, depth, ts
Task: Get lat from uv_index where qc appears in turbidity readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070543 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: lat, depth, level, value
Sensor: snow_depth | fields: value, depth, type, lon
Task: Retrieve level from rainfall whose qc is found in snow_depth records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070544 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: ts, unit, reading, qc
Sensor: sunlight | fields: depth, ts, lon, type
Task: Retrieve depth from humidity with value above the MIN(reading) of sunlight readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070545 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: depth, qc, ts, type
Sensor: lightning | fields: ts, lon, qc, reading
Task: Fetch depth from sunlight where depth is greater than the total of depth in lightning for matching type.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070546 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: unit, level, type, depth
Sensor: air_quality | fields: depth, reading, lon, level
Task: Retrieve lat from rainfall whose ts is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070547 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: unit, level, reading, qc
Sensor: humidity | fields: unit, value, depth, level
Task: Get lat from dew_point where a corresponding entry exists in humidity with the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070548 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: type, qc, ts, level
Sensor: snow_depth | fields: depth, level, qc, lat
Task: Fetch value from temperature where depth exists in snow_depth sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070549 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: unit, ts, value, qc
Sensor: air_quality | fields: value, reading, lon, level
Task: Get depth from cloud_cover where a corresponding entry exists in air_quality with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070550 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: type, lat, unit, level
Sensor: uv_index | fields: value, lon, reading, level
Task: Get lon from humidity where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070551 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: value, qc, lon, depth
Sensor: rainfall | fields: type, reading, value, lon
Task: Retrieve value from dew_point that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070552 | train |
v3 | Sensor network script:
Node: visibility | code: clr | fields: level, reading, depth, qc
Sensor: uv_index | fields: ts, depth, type, qc
Task: Retrieve reading from visibility with reading above the AVG(depth) of uv_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070553 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: value, lon, depth, lat
Sensor: visibility | fields: depth, lon, unit, lat
Task: Retrieve depth from pressure whose type is found in visibility records where type matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070554 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: value, qc, ts, type
Sensor: air_quality | fields: level, qc, lat, reading
Task: Retrieve lon from humidity that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070555 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: reading, unit, ts, lat
Sensor: air_quality | fields: qc, level, depth, ts
Task: Retrieve value from frost whose type is found in air_quality records where type matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="type",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070556 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: reading, ts, value, type
Sensor: wind_speed | fields: lon, unit, type, depth
Task: Fetch reading from frost where depth is greater than the average of depth in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070557 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: lon, reading, value, depth
Sensor: cloud_cover | fields: lon, depth, value, ts
Task: Retrieve lon from turbidity that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070558 | train |
v3 | Sensor network script:
Node: frost | code: stn | fields: qc, reading, lat, depth
Sensor: sunlight | fields: lat, type, level, reading
Task: Get lat from frost where reading exceeds the maximum value from sunlight for the same type.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070559 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: type, unit, lat, reading
Sensor: snow_depth | fields: lat, ts, level, lon
Task: Retrieve reading from dew_point with reading above the COUNT(value) of snow_depth readings sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070560 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: type, ts, qc, unit
Sensor: cloud_cover | fields: value, reading, lon, type
Task: Get lon from visibility where type appears in cloud_cover readings with matching ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070561 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: lon, qc, level, unit
Sensor: drought_index | fields: value, unit, lat, lon
Task: Retrieve reading from sunlight that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070562 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: type, unit, level, ts
Sensor: temperature | fields: type, level, depth, lat
Task: Get level from turbidity where reading exceeds the minimum value from temperature for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070563 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: depth, reading, ts, lat
Sensor: frost | fields: depth, lon, lat, ts
Task: Get reading from temperature where ts appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070564 | train |
v2 | Sensor network script:
Node: visibility | code: prt | fields: level, reading, value, unit
Sensor: temperature | fields: reading, lon, type, depth
Task: Fetch value from visibility that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070565 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: level, value, lon, depth
Sensor: turbidity | fields: level, qc, ts, unit
Task: Retrieve lat from sunlight with depth above the AVG(value) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070566 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: depth, unit, level, reading
Sensor: drought_index | fields: unit, ts, depth, lon
Task: Get depth from sunlight where type appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070567 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: qc, level, lon, lat
Sensor: wind_speed | fields: type, depth, lon, qc
Task: Retrieve depth from turbidity with depth above the COUNT(depth) of wind_speed readings sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070568 | train |
v3 | Sensor network script:
Node: dew_point | code: stn | fields: level, unit, reading, value
Sensor: uv_index | fields: level, unit, type, value
Task: Get lon from dew_point where reading exceeds the average value from uv_index for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070569 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: type, depth, lon, level
Sensor: wind_speed | fields: value, depth, lat, ts
Task: Get lon from cloud_cover where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070570 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: value, lon, unit, lat
Sensor: snow_depth | fields: lon, value, lat, type
Task: Get level from rainfall where a corresponding entry exists in snow_depth with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070571 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: unit, type, lat, ts
Sensor: dew_point | fields: type, lon, depth, unit
Task: Get depth from soil_moisture where depth appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070572 | train |
v3 | Sensor network script:
Node: snow_depth | code: clr | fields: level, lon, type, ts
Sensor: dew_point | fields: qc, reading, level, depth
Task: Get value from snow_depth where value exceeds the minimum depth from dew_point for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070573 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: type, lat, value, depth
Sensor: turbidity | fields: reading, value, ts, level
Task: Get depth from rainfall where depth exceeds the maximum depth from turbidity for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070574 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: unit, value, lat, lon
Sensor: visibility | fields: ts, level, type, lat
Task: Retrieve level from lightning that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070575 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: level, unit, lat, type
Sensor: visibility | fields: level, reading, type, unit
Task: Fetch value from air_quality where value is greater than the count of of depth in visibility for matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070576 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: value, ts, unit, depth
Sensor: temperature | fields: depth, reading, ts, level
Task: Get depth from visibility where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070577 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: reading, type, lat, lon
Sensor: sunlight | fields: level, lon, type, unit
Task: Fetch depth from dew_point where depth exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070578 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: level, reading, unit, ts
Sensor: sunlight | fields: depth, type, lat, reading
Task: Retrieve level from evaporation whose qc is found in sunlight records where unit matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070579 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: qc, lat, lon, level
Sensor: humidity | fields: reading, level, lon, unit
Task: Fetch value from frost that have at least one corresponding humidity measurement for the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070580 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: ts, unit, level, type
Sensor: cloud_cover | fields: type, lon, lat, level
Task: Retrieve lat from sunlight whose ts is found in cloud_cover records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070581 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: lon, depth, reading, lat
Sensor: evaporation | fields: reading, type, ts, lat
Task: Fetch depth from pressure where type exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070582 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: depth, lat, ts, reading
Sensor: frost | fields: type, value, qc, lat
Task: Get value from wind_speed where reading exceeds the maximum depth from frost for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("frost", code="frs"),
match="unit"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070583 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: type, qc, lon, value
Sensor: soil_moisture | fields: value, ts, reading, level
Task: Get depth from frost where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070584 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: type, level, qc, lon
Sensor: snow_depth | fields: level, unit, depth, reading
Task: Get lat from lightning where qc appears in snow_depth readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070585 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: value, lon, lat, qc
Sensor: pressure | fields: reading, qc, value, ts
Task: Retrieve lon from evaporation with value above the SUM(value) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070586 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: ts, lon, type, value
Sensor: humidity | fields: value, depth, qc, lat
Task: Retrieve lon from evaporation whose qc is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070587 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: depth, lat, unit, lon
Sensor: soil_moisture | fields: type, unit, level, ts
Task: Fetch value from frost where depth exists in soil_moisture sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070588 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: level, depth, type, unit
Sensor: frost | fields: type, lat, level, reading
Task: Retrieve lon from sunlight that have at least one matching reading in frost sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070589 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: value, type, qc, reading
Sensor: evaporation | fields: type, ts, level, value
Task: Fetch value from lightning where depth exists in evaporation sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070590 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: level, unit, qc, type
Sensor: pressure | fields: value, lon, ts, level
Task: Get lat from temperature where depth exceeds the average value from pressure for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070591 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: type, reading, qc, lat
Sensor: wind_speed | fields: lon, lat, ts, value
Task: Fetch value from dew_point where reading is greater than the maximum of reading in wind_speed for matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070592 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: reading, value, ts, depth
Sensor: visibility | fields: value, lat, unit, reading
Task: Get level from air_quality where reading exceeds the maximum depth from visibility for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="type"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070593 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: depth, value, lat, reading
Sensor: temperature | fields: level, lat, value, ts
Task: Get reading from soil_moisture where a corresponding entry exists in temperature with the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_070594 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: value, lon, level, type
Sensor: pressure | fields: unit, depth, level, lat
Task: Fetch value from humidity where depth exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070595 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: level, depth, lat, unit
Sensor: uv_index | fields: type, unit, value, lon
Task: Get lon from dew_point where reading exceeds the average reading from uv_index for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070596 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: qc, reading, lon, type
Sensor: sunlight | fields: type, reading, unit, value
Task: Fetch depth from wind_speed where unit exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070597 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: lon, depth, value, qc
Sensor: cloud_cover | fields: level, type, ts, depth
Task: Retrieve lon from soil_moisture whose unit is found in cloud_cover records where depth matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070598 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: unit, type, lon, depth
Sensor: drought_index | fields: lat, qc, reading, depth
Task: Get depth from soil_moisture where a corresponding entry exists in drought_index with the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_070599 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.