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: cloud_cover | code: thr | fields: ts, type, level, unit
Sensor: air_quality | fields: qc, depth, reading, level
Task: Retrieve depth from cloud_cover whose depth is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="depth",
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",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060700 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: qc, value, lon, depth
Sensor: dew_point | fields: depth, unit, qc, type
Task: Fetch reading from visibility where reading is greater than the average of value in dew_point for matching type.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060701 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: unit, depth, type, reading
Sensor: turbidity | fields: depth, value, ts, level
Task: Retrieve lon from soil_moisture that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060702 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: lon, depth, ts, level
Sensor: soil_moisture | fields: unit, value, depth, level
Task: Get lat from rainfall where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060703 | train |
v2 | Sensor network script:
Node: drought_index | code: mst | fields: value, depth, ts, lat
Sensor: air_quality | fields: value, type, reading, depth
Task: Retrieve reading from drought_index that have at least one matching reading in air_quality sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060704 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: reading, ts, unit, lon
Sensor: lightning | fields: unit, type, lon, value
Task: Get reading from rainfall where a corresponding entry exists in lightning with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060705 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: type, reading, value, qc
Sensor: soil_moisture | fields: qc, depth, unit, reading
Task: Get lon from drought_index where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060706 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: ts, unit, level, type
Sensor: visibility | fields: type, level, unit, depth
Task: Fetch level from frost that have at least one corresponding visibility measurement for the same unit.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060707 | train |
v3 | Sensor network script:
Node: drought_index | code: mst | fields: depth, lat, value, ts
Sensor: frost | fields: lat, level, reading, unit
Task: Get depth from drought_index where reading exceeds the average depth from frost for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060708 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: depth, lon, ts, level
Sensor: sunlight | fields: lat, value, level, type
Task: Fetch reading from evaporation where unit exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060709 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: reading, level, depth, ts
Sensor: dew_point | fields: qc, lon, level, unit
Task: Get reading from soil_moisture where value exceeds the minimum depth from dew_point for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"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_060710 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: qc, unit, lat, lon
Sensor: turbidity | fields: qc, depth, level, reading
Task: Fetch value from air_quality where type exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060711 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: reading, qc, depth, value
Sensor: cloud_cover | fields: lon, type, lat, qc
Task: Get lon from wind_speed where depth appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060712 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: depth, level, lon, type
Sensor: temperature | fields: lon, ts, unit, depth
Task: Fetch level from wind_speed that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060713 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: ts, depth, lat, unit
Sensor: pressure | fields: unit, level, reading, value
Task: Retrieve lat from uv_index that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060714 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: lon, depth, reading, ts
Sensor: cloud_cover | fields: lat, level, lon, type
Task: Fetch lat from drought_index that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060715 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: type, level, value, qc
Sensor: humidity | fields: type, unit, lon, level
Task: Fetch reading from frost that have at least one corresponding humidity measurement for the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060716 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: unit, value, level, type
Sensor: visibility | fields: qc, type, depth, lat
Task: Fetch reading from air_quality that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060717 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: reading, type, lat, unit
Sensor: rainfall | fields: type, value, lat, level
Task: Get reading from wind_speed where ts appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060718 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: level, qc, value, unit
Sensor: turbidity | fields: lon, reading, level, unit
Task: Fetch value from wind_speed where depth exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060719 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: type, lat, depth, reading
Sensor: wind_speed | fields: depth, ts, unit, value
Task: Retrieve lon from humidity that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060720 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: level, lon, type, lat
Sensor: wind_speed | fields: qc, value, reading, depth
Task: Get lat from drought_index where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060721 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: value, type, qc, lon
Sensor: frost | fields: depth, reading, lat, lon
Task: Get depth from pressure where depth appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060722 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: ts, lat, lon, type
Sensor: dew_point | fields: lon, value, ts, lat
Task: Fetch reading from snow_depth where unit exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060723 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: lon, depth, reading, level
Sensor: uv_index | fields: depth, ts, value, qc
Task: Get lon from pressure where value exceeds the average depth from uv_index for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060724 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: unit, type, lat, qc
Sensor: humidity | fields: lon, type, unit, qc
Task: Fetch lon from rainfall where type exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060725 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: lon, type, lat, depth
Sensor: lightning | fields: value, depth, qc, type
Task: Get level from soil_moisture where depth exceeds the count of value from lightning for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060726 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: level, reading, lat, value
Sensor: turbidity | fields: level, ts, depth, value
Task: Get depth from frost where a corresponding entry exists in turbidity with the same type.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060727 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: depth, lon, type, lat
Sensor: drought_index | fields: lon, level, depth, ts
Task: Retrieve lat from wind_speed with depth above the MAX(reading) of drought_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060728 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: reading, value, depth, lat
Sensor: pressure | fields: depth, value, level, lat
Task: Get depth from frost where depth appears in pressure readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060729 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: lat, level, qc, depth
Sensor: uv_index | fields: value, lat, type, unit
Task: Get lat from soil_moisture where a corresponding entry exists in uv_index with the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060730 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: lon, lat, type, depth
Sensor: drought_index | fields: ts, type, qc, value
Task: Retrieve value from sunlight with value above the MAX(depth) of drought_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060731 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: value, unit, qc, depth
Sensor: dew_point | fields: ts, type, level, lon
Task: Get lat from wind_speed where a corresponding entry exists in dew_point with the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060732 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: value, qc, unit, lat
Sensor: humidity | fields: depth, type, ts, lon
Task: Retrieve value from visibility that have at least one matching reading in humidity sharing the same type.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060733 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: unit, value, qc, reading
Sensor: frost | fields: unit, lon, lat, ts
Task: Retrieve reading from dew_point whose type is found in frost records where qc matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060734 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: ts, qc, lon, value
Sensor: rainfall | fields: lat, ts, unit, lon
Task: Get lon from pressure where value exceeds the minimum depth from rainfall for the same type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060735 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, level, depth, ts
Sensor: snow_depth | fields: value, reading, depth, type
Task: Retrieve lat from soil_moisture that have at least one matching reading in snow_depth sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060736 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: type, unit, level, depth
Sensor: drought_index | fields: depth, value, lat, lon
Task: Get reading from sunlight where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060737 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: type, qc, lon, ts
Sensor: turbidity | fields: type, qc, lat, value
Task: Get lon from drought_index where type appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060738 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: qc, type, value, reading
Sensor: cloud_cover | fields: unit, qc, type, lat
Task: Retrieve level from air_quality whose ts is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060739 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: depth, reading, ts, unit
Sensor: soil_moisture | fields: qc, level, depth, reading
Task: Get depth from lightning where ts appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060740 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: level, unit, type, depth
Sensor: drought_index | fields: value, unit, lon, qc
Task: Retrieve level from snow_depth whose unit is found in drought_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060741 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: type, level, lat, qc
Sensor: pressure | fields: unit, qc, reading, lat
Task: Retrieve level from turbidity with reading above the SUM(depth) of pressure readings sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060742 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: depth, unit, qc, type
Sensor: lightning | fields: value, qc, type, depth
Task: Fetch value from rainfall where depth exists in lightning sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060743 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: unit, depth, type, qc
Sensor: lightning | fields: level, depth, ts, lon
Task: Retrieve lat from frost that have at least one matching reading in lightning sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060744 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: ts, type, unit, lon
Sensor: soil_moisture | fields: qc, ts, lon, lat
Task: Fetch level from frost where depth exists in soil_moisture sensor data for the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060745 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: reading, lat, depth, type
Sensor: dew_point | fields: level, unit, lon, lat
Task: Retrieve lon from uv_index with reading above the AVG(value) of dew_point readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060746 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: ts, value, level, lon
Sensor: evaporation | fields: value, lat, qc, type
Task: Get depth from sunlight where a corresponding entry exists in evaporation with the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060747 | train |
v1 | Sensor network script:
Node: soil_moisture | code: prt | fields: type, value, qc, lat
Sensor: frost | fields: reading, unit, qc, value
Task: Get reading from soil_moisture where type appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060748 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: depth, level, value, qc
Sensor: rainfall | fields: ts, level, type, value
Task: Fetch lon from turbidity that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060749 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: type, ts, depth, reading
Sensor: sunlight | fields: unit, value, type, reading
Task: Retrieve lat from humidity that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lat",
) | {
"outer_table": "humidity",
"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_060750 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: lon, depth, qc, level
Sensor: lightning | fields: reading, unit, ts, depth
Task: Fetch depth from drought_index that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060751 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: reading, lat, type, ts
Sensor: pressure | fields: level, ts, type, lat
Task: Fetch lon from lightning where value is greater than the total of value in pressure for matching unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060752 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: reading, lon, qc, value
Sensor: temperature | fields: unit, qc, depth, reading
Task: Get depth from dew_point where type appears in temperature readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060753 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: lat, level, ts, unit
Sensor: cloud_cover | fields: value, lon, depth, reading
Task: Get lat from dew_point where reading exceeds the count of value from cloud_cover for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060754 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: type, lat, reading, unit
Sensor: temperature | fields: lon, level, type, value
Task: Fetch value from drought_index where value is greater than the total of value in temperature for matching type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("temperature", code="thr"),
match="type"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060755 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: qc, type, value, unit
Sensor: pressure | fields: ts, lat, level, reading
Task: Retrieve level from evaporation that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060756 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: reading, level, type, unit
Sensor: turbidity | fields: lat, reading, depth, level
Task: Fetch level from humidity that have at least one corresponding turbidity measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060757 | train |
v2 | Sensor network script:
Node: temperature | code: stn | fields: unit, depth, value, reading
Sensor: visibility | fields: lat, lon, unit, qc
Task: Retrieve level from temperature that have at least one matching reading in visibility sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060758 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: type, value, depth, ts
Sensor: drought_index | fields: ts, type, qc, unit
Task: Get lat from wind_speed where a corresponding entry exists in drought_index with the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060759 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: value, reading, type, lat
Sensor: air_quality | fields: lon, unit, level, type
Task: Get lon from cloud_cover where depth exceeds the maximum value from air_quality for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060760 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: level, depth, reading, unit
Sensor: visibility | fields: value, ts, level, type
Task: Fetch lat from humidity that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060761 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: depth, qc, lon, unit
Sensor: snow_depth | fields: reading, unit, qc, lon
Task: Fetch reading from turbidity where type exists in snow_depth sensor data for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060762 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: reading, depth, type, unit
Sensor: humidity | fields: lon, depth, type, qc
Task: Retrieve lat from turbidity that have at least one matching reading in humidity sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060763 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: unit, lat, lon, level
Sensor: turbidity | fields: depth, reading, ts, value
Task: Fetch reading from rainfall that have at least one corresponding turbidity measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060764 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: value, unit, type, reading
Sensor: drought_index | fields: ts, reading, level, value
Task: Get value from frost where reading exceeds the count of value from drought_index for the same qc.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060765 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: type, value, lon, reading
Sensor: sunlight | fields: level, qc, ts, reading
Task: Get lat from snow_depth where depth appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060766 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, lon, value, ts
Sensor: snow_depth | fields: value, depth, lat, reading
Task: Get depth from wind_speed where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060767 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: type, lon, depth, unit
Sensor: cloud_cover | fields: unit, depth, type, lat
Task: Retrieve lat from drought_index that have at least one matching reading in cloud_cover sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060768 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: reading, lon, depth, type
Sensor: visibility | fields: lon, value, ts, qc
Task: Retrieve level from temperature whose qc is found in visibility records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060769 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: unit, reading, ts, lat
Sensor: uv_index | fields: type, value, ts, lon
Task: Fetch level from evaporation where ts exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060770 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: lon, unit, ts, qc
Sensor: soil_moisture | fields: value, qc, level, type
Task: Retrieve reading from visibility whose depth is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060771 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: level, qc, type, value
Sensor: frost | fields: type, reading, value, lat
Task: Retrieve value from evaporation with depth above the MAX(value) of frost readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060772 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: depth, ts, lat, value
Sensor: wind_speed | fields: reading, unit, type, depth
Task: Get lon from pressure where value exceeds the count of depth from wind_speed for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"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_060773 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: unit, level, lon, ts
Sensor: humidity | fields: type, value, reading, level
Task: Retrieve lat from sunlight that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060774 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: reading, unit, qc, lat
Sensor: evaporation | fields: level, value, lat, lon
Task: Retrieve reading from snow_depth that have at least one matching reading in evaporation sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060775 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: level, reading, lon, ts
Sensor: humidity | fields: ts, lat, value, depth
Task: Retrieve depth from pressure whose type is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060776 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: depth, value, reading, lat
Sensor: lightning | fields: value, depth, type, level
Task: Fetch depth from temperature where reading is greater than the average of depth in lightning for matching qc.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060777 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: lon, reading, ts, qc
Sensor: soil_moisture | fields: type, qc, unit, ts
Task: Retrieve lon from dew_point with value above the SUM(reading) of soil_moisture readings sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060778 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: value, level, depth, unit
Sensor: turbidity | fields: qc, value, type, lon
Task: Fetch value from soil_moisture where reading is greater than the minimum of depth in turbidity for matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060779 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: type, lon, reading, lat
Sensor: dew_point | fields: level, qc, value, lon
Task: Fetch depth from visibility where unit exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060780 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: unit, ts, type, value
Sensor: uv_index | fields: lon, depth, type, ts
Task: Retrieve reading from sunlight with depth above the COUNT(depth) of uv_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060781 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: unit, lat, reading, depth
Sensor: cloud_cover | fields: type, unit, depth, value
Task: Retrieve lon from dew_point with reading above the MIN(depth) of cloud_cover readings sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060782 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: unit, reading, level, ts
Sensor: snow_depth | fields: lat, level, qc, type
Task: Retrieve lat from cloud_cover that have at least one matching reading in snow_depth sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060783 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: ts, type, unit, reading
Sensor: frost | fields: type, level, depth, ts
Task: Fetch reading from soil_moisture where depth is greater than the maximum of reading in frost for matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"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_060784 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: ts, lat, type, qc
Sensor: temperature | fields: lat, depth, qc, reading
Task: Retrieve reading from rainfall with depth above the MAX(value) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060785 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: qc, reading, level, unit
Sensor: humidity | fields: depth, unit, qc, lat
Task: Get depth from frost where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060786 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: level, ts, depth, qc
Sensor: drought_index | fields: unit, depth, reading, qc
Task: Get level from frost where a corresponding entry exists in drought_index with the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060787 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: lat, level, type, unit
Sensor: soil_moisture | fields: unit, type, lon, lat
Task: Fetch level from turbidity that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060788 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: depth, value, ts, lat
Sensor: evaporation | fields: unit, ts, reading, depth
Task: Retrieve value from wind_speed whose unit is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060789 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: qc, depth, lat, type
Sensor: air_quality | fields: qc, depth, reading, level
Task: Retrieve value from snow_depth with value above the AVG(value) of air_quality readings sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060790 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: reading, lon, lat, type
Sensor: rainfall | fields: lat, lon, ts, qc
Task: Fetch value from humidity where unit exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060791 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: lat, value, reading, qc
Sensor: turbidity | fields: depth, level, qc, unit
Task: Get reading from dew_point where value exceeds the maximum depth from turbidity for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060792 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: unit, lon, value, reading
Sensor: drought_index | fields: lon, value, unit, lat
Task: Retrieve value from dew_point that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060793 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: ts, reading, lon, type
Sensor: temperature | fields: level, value, ts, lon
Task: Retrieve level from sunlight with depth above the MIN(value) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060794 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: depth, qc, lon, level
Sensor: rainfall | fields: unit, lat, qc, ts
Task: Get value from temperature where a corresponding entry exists in rainfall with the same type.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060795 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: value, reading, unit, level
Sensor: visibility | fields: unit, lon, reading, qc
Task: Fetch reading from uv_index where depth is greater than the minimum of value in visibility for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
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": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060796 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: value, level, unit, type
Sensor: uv_index | fields: level, reading, depth, unit
Task: Get reading from pressure where a corresponding entry exists in uv_index with the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060797 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: lon, lat, qc, value
Sensor: wind_speed | fields: value, lon, qc, lat
Task: Retrieve level from sunlight with reading above the COUNT(depth) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_060798 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: depth, level, ts, value
Sensor: drought_index | fields: depth, level, qc, lat
Task: Get reading from pressure where a corresponding entry exists in drought_index with the same ts.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_060799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.