variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: uv_index | code: hub | fields: depth, reading, type, ts
Sensor: soil_moisture | fields: lon, unit, type, qc
Task: Get lat from uv_index where reading exceeds the count of reading from soil_moisture for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069200 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: ts, type, depth, qc
Sensor: lightning | fields: depth, unit, type, ts
Task: Retrieve value from uv_index that have at least one matching reading in lightning sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069201 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: level, type, ts, qc
Sensor: uv_index | fields: value, qc, unit, lon
Task: Get reading from rainfall where depth appears in uv_index readings with matching type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069202 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: lon, value, depth, qc
Sensor: uv_index | fields: depth, reading, type, lon
Task: Get lat from rainfall where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069203 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: qc, lon, depth, reading
Sensor: humidity | fields: ts, unit, value, reading
Task: Fetch value from sunlight that have at least one corresponding humidity measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069204 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: value, unit, level, type
Sensor: wind_speed | fields: type, qc, lat, level
Task: Retrieve reading from temperature with reading above the MAX(reading) of wind_speed readings sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069205 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, lon, level, reading
Sensor: pressure | fields: reading, lon, ts, type
Task: Get level from cloud_cover where unit appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069206 | train |
v3 | Sensor network script:
Node: air_quality | code: hub | fields: depth, value, unit, type
Sensor: drought_index | fields: level, type, lon, depth
Task: Retrieve value from air_quality with depth above the AVG(value) of drought_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069207 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: value, level, reading, lat
Sensor: uv_index | fields: lat, reading, lon, qc
Task: Fetch reading from sunlight where value is greater than the total of value in uv_index for matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069208 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: type, lon, lat, ts
Sensor: humidity | fields: depth, ts, lat, type
Task: Get value from wind_speed where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069209 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: value, unit, lat, reading
Sensor: pressure | fields: qc, level, reading, ts
Task: Fetch depth from rainfall where value is greater than the maximum of reading in pressure for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069210 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: qc, lon, lat, ts
Sensor: snow_depth | fields: lon, type, depth, qc
Task: Retrieve value from lightning that have at least one matching reading in snow_depth sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069211 | train |
v3 | Sensor network script:
Node: lightning | code: hub | fields: ts, qc, level, value
Sensor: pressure | fields: lat, depth, qc, type
Task: Get value from lightning where value exceeds the minimum reading from pressure for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069212 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: reading, unit, type, value
Sensor: sunlight | fields: lat, qc, value, level
Task: Retrieve value from wind_speed that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069213 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: ts, value, qc, depth
Sensor: rainfall | fields: reading, unit, level, lat
Task: Retrieve reading from sunlight whose unit is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069214 | train |
v1 | Sensor network script:
Node: turbidity | code: clr | fields: qc, level, reading, type
Sensor: lightning | fields: lat, unit, level, qc
Task: Get value from turbidity where depth appears in lightning readings with matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069215 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: unit, qc, value, ts
Sensor: cloud_cover | fields: ts, qc, depth, value
Task: Fetch lat from air_quality where depth is greater than the minimum of reading in cloud_cover for matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069216 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: qc, reading, lat, depth
Sensor: cloud_cover | fields: qc, depth, ts, unit
Task: Retrieve lon from sunlight whose ts is found in cloud_cover records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069217 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: lon, unit, type, reading
Sensor: temperature | fields: depth, value, type, reading
Task: Get level from drought_index where type appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069218 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: lon, ts, depth, qc
Sensor: turbidity | fields: value, unit, lon, type
Task: Get level from pressure where depth appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069219 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: type, unit, depth, value
Sensor: soil_moisture | fields: depth, lat, qc, lon
Task: Retrieve lon from snow_depth with depth above the MAX(value) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069220 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: unit, type, lat, reading
Sensor: lightning | fields: lat, ts, value, lon
Task: Fetch reading from visibility that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069221 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: qc, depth, lon, value
Sensor: wind_speed | fields: lon, qc, unit, ts
Task: Fetch lon from sunlight that have at least one corresponding wind_speed measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069222 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: value, level, type, reading
Sensor: evaporation | fields: unit, value, depth, reading
Task: Get lat from soil_moisture where unit appears in evaporation readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069223 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: qc, depth, ts, unit
Sensor: turbidity | fields: lon, ts, qc, level
Task: Retrieve lat from drought_index that have at least one matching reading in turbidity sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069224 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: lon, value, ts, unit
Sensor: sunlight | fields: unit, lat, depth, level
Task: Get reading from evaporation where depth exceeds the total depth from sunlight for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069225 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: depth, unit, ts, level
Sensor: humidity | fields: value, ts, reading, type
Task: Retrieve depth from turbidity that have at least one matching reading in humidity sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069226 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: unit, depth, reading, ts
Sensor: evaporation | fields: ts, lat, lon, reading
Task: Fetch reading from uv_index where depth is greater than the maximum of value in evaporation for matching depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069227 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: value, ts, unit, depth
Sensor: frost | fields: reading, ts, unit, value
Task: Fetch lon from lightning that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069228 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: lon, type, reading, qc
Sensor: wind_speed | fields: ts, type, qc, reading
Task: Get lon from evaporation where depth exceeds the count of value from wind_speed for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069229 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: ts, depth, qc, value
Sensor: sunlight | fields: unit, depth, qc, lon
Task: Retrieve level from humidity that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069230 | train |
v3 | Sensor network script:
Node: lightning | code: ref | fields: unit, level, type, depth
Sensor: frost | fields: unit, lon, qc, value
Task: Fetch lat from lightning where value is greater than the minimum of reading in frost for matching ts.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="ts"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069231 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: type, lat, level, depth
Sensor: snow_depth | fields: level, lat, ts, lon
Task: Fetch level from rainfall where depth is greater than the maximum of depth in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069232 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: level, type, lon, ts
Sensor: air_quality | fields: reading, unit, value, lon
Task: Get lat from temperature where type appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069233 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: ts, unit, depth, lat
Sensor: cloud_cover | fields: value, lat, ts, lon
Task: Fetch level from pressure where ts exists in cloud_cover sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069234 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: ts, lat, value, level
Sensor: rainfall | fields: ts, reading, qc, unit
Task: Fetch value from dew_point where depth exists in rainfall sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="value",
) | {
"outer_table": "dew_point",
"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_069235 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: ts, unit, lat, lon
Sensor: evaporation | fields: reading, level, lat, type
Task: Retrieve lon from cloud_cover with value above the AVG(value) of evaporation readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069236 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: depth, value, lat, level
Sensor: air_quality | fields: value, depth, ts, type
Task: Fetch depth from evaporation where depth is greater than the maximum of value in air_quality for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"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_069237 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: ts, level, type, depth
Sensor: uv_index | fields: unit, depth, ts, lat
Task: Fetch lat from humidity where depth exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069238 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: reading, qc, type, ts
Sensor: pressure | fields: depth, type, unit, ts
Task: Retrieve lat from air_quality with value above the COUNT(value) of pressure readings sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069239 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: level, depth, type, qc
Sensor: drought_index | fields: lon, ts, value, lat
Task: Get depth from lightning where depth exceeds the average depth from drought_index for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069240 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: reading, ts, lon, lat
Sensor: snow_depth | fields: ts, reading, value, qc
Task: Get lon from temperature where depth appears in snow_depth readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069241 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: lon, unit, qc, level
Sensor: snow_depth | fields: lon, reading, depth, unit
Task: Get depth from dew_point where depth exceeds the total value from snow_depth for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069242 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: ts, depth, qc, type
Sensor: soil_moisture | fields: type, lat, ts, qc
Task: Retrieve value from frost with depth above the AVG(value) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069243 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: depth, lat, type, qc
Sensor: soil_moisture | fields: level, qc, lon, depth
Task: Fetch value from drought_index that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069244 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: lon, level, type, qc
Sensor: turbidity | fields: ts, lat, level, type
Task: Fetch depth from rainfall where depth is greater than the minimum of value in turbidity for matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069245 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: level, lat, unit, lon
Sensor: lightning | fields: level, lat, value, depth
Task: Get value from dew_point where depth appears in lightning readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069246 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: qc, type, depth, level
Sensor: visibility | fields: level, type, lat, lon
Task: Get depth from turbidity where a corresponding entry exists in visibility with the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069247 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: depth, value, reading, ts
Sensor: humidity | fields: reading, ts, unit, level
Task: Retrieve lat from frost that have at least one matching reading in humidity sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069248 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: level, lat, qc, depth
Sensor: cloud_cover | fields: level, lon, reading, unit
Task: Get lat from soil_moisture where ts appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069249 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: level, lon, qc, type
Sensor: turbidity | fields: level, lon, value, reading
Task: Fetch reading from visibility where ts exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069250 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: qc, level, depth, unit
Sensor: sunlight | fields: lat, level, type, depth
Task: Get lon from cloud_cover where depth exceeds the total depth from sunlight for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069251 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: type, lat, depth, value
Sensor: snow_depth | fields: type, qc, level, reading
Task: Fetch level from cloud_cover that have at least one corresponding snow_depth measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069252 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: lon, type, ts, level
Sensor: pressure | fields: qc, depth, lon, type
Task: Retrieve lat from temperature with depth above the MAX(reading) of pressure readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069253 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: qc, type, level, reading
Sensor: soil_moisture | fields: depth, lon, qc, ts
Task: Get reading from turbidity where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069254 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: unit, lon, lat, level
Sensor: cloud_cover | fields: reading, unit, qc, type
Task: Fetch depth from temperature where depth exists in cloud_cover sensor data for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069255 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: ts, reading, value, depth
Sensor: humidity | fields: unit, ts, lon, value
Task: Fetch reading from pressure where depth is greater than the maximum of value in humidity for matching type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069256 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: lon, qc, lat, ts
Sensor: soil_moisture | fields: ts, value, type, level
Task: Get level from frost where value exceeds the average value from soil_moisture for the same ts.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069257 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: depth, qc, value, reading
Sensor: dew_point | fields: value, level, qc, reading
Task: Get reading from lightning where reading exceeds the total reading from dew_point for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069258 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: unit, value, type, depth
Sensor: evaporation | fields: qc, unit, lon, ts
Task: Retrieve depth from snow_depth that have at least one matching reading in evaporation sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069259 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: lon, unit, depth, value
Sensor: frost | fields: level, value, ts, depth
Task: Get reading from humidity where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069260 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: lat, unit, qc, reading
Sensor: temperature | fields: depth, unit, value, lat
Task: Fetch depth from humidity that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069261 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: qc, unit, lon, lat
Sensor: wind_speed | fields: qc, lat, reading, depth
Task: Retrieve depth from turbidity with depth above the AVG(reading) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069262 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: value, ts, level, qc
Sensor: turbidity | fields: ts, qc, level, lon
Task: Fetch lon from wind_speed that have at least one corresponding turbidity measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069263 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: depth, ts, reading, level
Sensor: evaporation | fields: ts, depth, unit, qc
Task: Retrieve depth from rainfall that have at least one matching reading in evaporation sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="depth",
) | {
"outer_table": "rainfall",
"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_069264 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: lat, depth, ts, reading
Sensor: visibility | fields: ts, qc, type, lat
Task: Get level from turbidity where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"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_069265 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: value, level, depth, ts
Sensor: evaporation | fields: unit, lon, ts, level
Task: Get level from air_quality where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069266 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: lon, unit, depth, reading
Sensor: cloud_cover | fields: lon, depth, lat, type
Task: Get lat from drought_index where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069267 | train |
v3 | Sensor network script:
Node: soil_moisture | code: stn | fields: value, depth, lon, type
Sensor: sunlight | fields: depth, unit, ts, reading
Task: Fetch value from soil_moisture where depth is greater than the count of of value in sunlight for matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069268 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: qc, lat, type, ts
Sensor: visibility | fields: level, qc, type, reading
Task: Fetch reading from evaporation that have at least one corresponding visibility measurement for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069269 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: level, depth, qc, ts
Sensor: turbidity | fields: ts, qc, value, lon
Task: Get level from dew_point where a corresponding entry exists in turbidity with the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069270 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: qc, lon, reading, level
Sensor: frost | fields: value, unit, level, reading
Task: Retrieve lat from snow_depth whose type is found in frost records where unit matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069271 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: level, depth, ts, lat
Sensor: lightning | fields: lon, type, depth, ts
Task: Retrieve lon from temperature whose unit is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069272 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: lat, unit, lon, value
Sensor: cloud_cover | fields: type, ts, unit, lon
Task: Get lat from sunlight where a corresponding entry exists in cloud_cover with the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069273 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: level, depth, qc, lon
Sensor: drought_index | fields: value, lat, reading, type
Task: Retrieve lon from evaporation whose depth is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069274 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: unit, ts, lon, type
Sensor: pressure | fields: lon, level, unit, ts
Task: Retrieve reading from drought_index that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069275 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: depth, unit, value, qc
Sensor: turbidity | fields: lat, type, ts, reading
Task: Get reading from snow_depth where ts appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069276 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: qc, unit, type, ts
Sensor: snow_depth | fields: qc, lat, unit, reading
Task: Retrieve lat from lightning with value above the SUM(reading) of snow_depth readings sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069277 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: qc, type, reading, ts
Sensor: dew_point | fields: type, lon, reading, lat
Task: Retrieve depth from pressure that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069278 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: reading, lon, lat, qc
Sensor: soil_moisture | fields: value, depth, type, level
Task: Get depth from lightning where ts appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069279 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: depth, type, level, ts
Sensor: snow_depth | fields: depth, ts, lat, value
Task: Fetch lat from pressure where reading is greater than the minimum of reading in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069280 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: lat, value, type, lon
Sensor: uv_index | fields: reading, lon, qc, value
Task: Retrieve lat from lightning that have at least one matching reading in uv_index sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069281 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: depth, qc, lat, value
Sensor: soil_moisture | fields: lon, level, qc, value
Task: Get level from frost where a corresponding entry exists in soil_moisture with the same ts.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069282 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: qc, value, lon, ts
Sensor: visibility | fields: value, unit, level, type
Task: Fetch lat from pressure where depth is greater than the total of depth in visibility for matching depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069283 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: type, unit, lat, ts
Sensor: pressure | fields: qc, unit, lon, depth
Task: Get depth from sunlight where qc appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069284 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: lon, lat, depth, unit
Sensor: snow_depth | fields: level, reading, lon, lat
Task: Fetch lon from cloud_cover that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069285 | train |
v1 | Sensor network script:
Node: turbidity | code: clr | fields: reading, type, lon, ts
Sensor: cloud_cover | fields: ts, qc, lat, lon
Task: Get reading from turbidity where unit appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069286 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: lon, depth, reading, unit
Sensor: wind_speed | fields: reading, qc, value, lat
Task: Retrieve value from frost with value above the AVG(reading) of wind_speed readings sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069287 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: lat, lon, type, reading
Sensor: air_quality | fields: level, unit, lon, ts
Task: Retrieve lat from soil_moisture with reading above the COUNT(value) of air_quality readings sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069288 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: type, reading, lon, ts
Sensor: lightning | fields: lon, level, reading, value
Task: Retrieve value from humidity with reading above the AVG(reading) of lightning readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069289 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: lon, lat, ts, level
Sensor: wind_speed | fields: value, reading, qc, lon
Task: Fetch lat from turbidity where depth is greater than the count of of reading in wind_speed for matching type.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069290 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: ts, lat, unit, type
Sensor: snow_depth | fields: reading, type, lat, unit
Task: Fetch depth from humidity that have at least one corresponding snow_depth measurement for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069291 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: depth, ts, level, lat
Sensor: rainfall | fields: ts, level, unit, depth
Task: Retrieve depth from uv_index that have at least one matching reading in rainfall sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069292 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: ts, level, qc, lat
Sensor: frost | fields: unit, qc, lon, depth
Task: Retrieve reading from cloud_cover whose type is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069293 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: ts, depth, lon, unit
Sensor: frost | fields: lat, lon, unit, level
Task: Retrieve depth from visibility whose ts is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="type",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069294 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: lat, lon, ts, qc
Sensor: lightning | fields: reading, lat, qc, value
Task: Retrieve reading from uv_index that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069295 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: ts, type, lat, lon
Sensor: lightning | fields: lat, qc, level, type
Task: Fetch level from sunlight where ts exists in lightning sensor data for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069296 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: value, reading, lon, depth
Sensor: humidity | fields: qc, lon, lat, depth
Task: Fetch lat from snow_depth where qc exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069297 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: value, lat, lon, level
Sensor: drought_index | fields: lat, level, reading, depth
Task: Retrieve lat from lightning whose unit is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069298 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: qc, ts, value, lat
Sensor: sunlight | fields: reading, type, qc, depth
Task: Fetch lat from visibility where reading is greater than the maximum of value in sunlight for matching depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069299 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.