variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: air_quality | code: clr | fields: lat, qc, unit, ts
Sensor: rainfall | fields: lat, qc, level, ts
Task: Get lon from air_quality where a corresponding entry exists in rainfall with the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"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_075700 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: level, depth, lon, ts
Sensor: temperature | fields: reading, unit, value, qc
Task: Get lon from drought_index where depth exceeds the minimum depth from temperature for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075701 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: value, lat, level, unit
Sensor: snow_depth | fields: qc, level, ts, type
Task: Get lon from drought_index where type appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075702 | train |
v3 | Sensor network script:
Node: temperature | code: thr | fields: unit, level, lat, ts
Sensor: frost | fields: ts, depth, lon, level
Task: Get lat from temperature where depth exceeds the minimum reading from frost for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="ts"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075703 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: lat, lon, depth, value
Sensor: humidity | fields: lon, qc, level, reading
Task: Fetch reading from cloud_cover where depth is greater than the count of of reading in humidity for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075704 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: reading, unit, depth, ts
Sensor: drought_index | fields: value, ts, depth, qc
Task: Fetch reading from frost where value is greater than the count of of depth in drought_index for matching type.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075705 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: lon, value, depth, ts
Sensor: uv_index | fields: unit, depth, lat, type
Task: Get value from rainfall where value exceeds the average value from uv_index for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075706 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: qc, depth, ts, level
Sensor: uv_index | fields: type, ts, level, lon
Task: Retrieve level from humidity that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075707 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: depth, lon, ts, reading
Sensor: visibility | fields: lon, reading, unit, qc
Task: Fetch lon from evaporation that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075708 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: lon, depth, unit, level
Sensor: frost | fields: lat, depth, unit, level
Task: Fetch reading from cloud_cover where depth is greater than the maximum of value in frost for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="type"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075709 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: qc, lat, ts, value
Sensor: snow_depth | fields: lat, ts, unit, type
Task: Get value from wind_speed where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075710 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: unit, level, ts, lat
Sensor: visibility | fields: ts, qc, lon, depth
Task: Retrieve lon from rainfall that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075711 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: ts, depth, reading, type
Sensor: uv_index | fields: type, lat, qc, level
Task: Fetch depth from cloud_cover where ts exists in uv_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075712 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: lat, ts, qc, depth
Sensor: rainfall | fields: value, lon, lat, depth
Task: Fetch lat from air_quality where depth exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075713 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: depth, level, unit, type
Sensor: drought_index | fields: level, unit, type, reading
Task: Fetch lon from evaporation that have at least one corresponding drought_index measurement for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075714 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: qc, value, lon, level
Sensor: dew_point | fields: lat, qc, type, level
Task: Get value from frost where depth exceeds the minimum reading from dew_point for the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075715 | train |
v3 | Sensor network script:
Node: visibility | code: ref | fields: lat, depth, lon, unit
Sensor: snow_depth | fields: qc, ts, reading, lon
Task: Retrieve value from visibility with depth above the SUM(value) of snow_depth readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075716 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: ts, depth, type, level
Sensor: frost | fields: value, ts, unit, depth
Task: Fetch lon from evaporation where unit exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075717 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: lat, depth, reading, lon
Sensor: dew_point | fields: type, reading, lat, qc
Task: Retrieve level from drought_index with value above the MAX(reading) of dew_point readings sharing the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075718 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: qc, type, unit, value
Sensor: turbidity | fields: lat, value, reading, type
Task: Fetch lat from lightning where qc exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075719 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: lat, type, qc, depth
Sensor: sunlight | fields: unit, type, depth, reading
Task: Retrieve lat from temperature that have at least one matching reading in sunlight sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075720 | train |
v1 | Sensor network script:
Node: wind_speed | code: stn | fields: reading, level, lat, depth
Sensor: dew_point | fields: qc, ts, reading, value
Task: Retrieve level from wind_speed whose unit is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075721 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: value, unit, lon, level
Sensor: uv_index | fields: level, lon, lat, reading
Task: Retrieve lon from sunlight that have at least one matching reading in uv_index sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075722 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: type, value, reading, level
Sensor: lightning | fields: lat, type, lon, level
Task: Fetch reading from uv_index that have at least one corresponding lightning measurement for 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_075723 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: reading, qc, level, unit
Sensor: dew_point | fields: lat, ts, lon, unit
Task: Get depth from drought_index where ts appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075724 | train |
v3 | Sensor network script:
Node: humidity | code: clr | fields: level, ts, type, lat
Sensor: uv_index | fields: level, value, reading, type
Task: Fetch reading from humidity where value is greater than the total of value in uv_index for matching type.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075725 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: unit, value, depth, type
Sensor: evaporation | fields: qc, value, ts, lat
Task: Get value from turbidity where a corresponding entry exists in evaporation with the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075726 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: ts, type, value, lon
Sensor: air_quality | fields: depth, unit, value, lon
Task: Get reading from frost where depth appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075727 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: lat, value, reading, lon
Sensor: frost | fields: type, depth, ts, level
Task: Get lon from temperature where a corresponding entry exists in frost with the same type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075728 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: unit, value, type, lat
Sensor: soil_moisture | fields: ts, reading, value, type
Task: Fetch reading from air_quality where depth exists in soil_moisture sensor data for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075729 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: depth, value, qc, type
Sensor: snow_depth | fields: lat, reading, qc, unit
Task: Fetch lon from wind_speed that have at least one corresponding snow_depth measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075730 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: reading, depth, ts, level
Sensor: visibility | fields: value, lon, unit, qc
Task: Fetch value from evaporation that have at least one corresponding visibility measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075731 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: value, type, lon, level
Sensor: dew_point | fields: ts, lat, unit, lon
Task: Retrieve depth from drought_index with depth above the COUNT(depth) of dew_point readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075732 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: unit, value, lat, qc
Sensor: wind_speed | fields: level, unit, lat, ts
Task: Get level from soil_moisture where value exceeds the minimum reading from wind_speed for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075733 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: unit, reading, type, lat
Sensor: air_quality | fields: lat, ts, type, level
Task: Get reading from visibility where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075734 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: reading, lon, depth, qc
Sensor: air_quality | fields: lon, ts, unit, depth
Task: Fetch depth from wind_speed where unit exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075735 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: level, lon, type, value
Sensor: turbidity | fields: value, depth, lat, reading
Task: Retrieve value from sunlight with depth above the SUM(depth) of turbidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075736 | train |
v3 | Sensor network script:
Node: turbidity | code: ref | fields: unit, level, depth, value
Sensor: dew_point | fields: level, reading, qc, depth
Task: Retrieve lon from turbidity with reading above the MAX(depth) of dew_point readings sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075737 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: ts, level, depth, reading
Sensor: rainfall | fields: level, lat, type, qc
Task: Get value from uv_index where type appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075738 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: lat, level, unit, lon
Sensor: air_quality | fields: lon, qc, ts, unit
Task: Get reading from evaporation where reading exceeds the total value from air_quality for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075739 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: lon, value, lat, type
Sensor: frost | fields: depth, lon, ts, type
Task: Get lat from air_quality where depth exceeds the maximum depth from frost for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075740 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: reading, lon, type, unit
Sensor: evaporation | fields: ts, lon, reading, value
Task: Retrieve value from soil_moisture whose ts is found in evaporation records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075741 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: lon, reading, type, qc
Sensor: humidity | fields: value, lat, depth, ts
Task: Fetch depth from drought_index that have at least one corresponding humidity measurement for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="depth",
) | {
"outer_table": "drought_index",
"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_075742 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: value, depth, ts, reading
Sensor: uv_index | fields: value, reading, qc, unit
Task: Retrieve value from lightning that have at least one matching reading in uv_index sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075743 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: level, lon, unit, lat
Sensor: cloud_cover | fields: unit, reading, qc, lat
Task: Get value from air_quality where unit appears in cloud_cover readings with matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075744 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: type, lat, ts, level
Sensor: air_quality | fields: lon, level, qc, type
Task: Get reading from dew_point where reading exceeds the average depth from air_quality for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075745 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: lat, reading, level, value
Sensor: soil_moisture | fields: lat, unit, depth, reading
Task: Fetch lat from cloud_cover where depth is greater than the total of reading in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075746 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: unit, depth, lat, lon
Sensor: uv_index | fields: ts, lat, value, depth
Task: Get lon from cloud_cover where a corresponding entry exists in uv_index with the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075747 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: qc, depth, unit, value
Sensor: evaporation | fields: value, reading, ts, level
Task: Fetch depth from lightning that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075748 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: value, depth, unit, ts
Sensor: visibility | fields: lon, depth, type, level
Task: Get lon from snow_depth where value exceeds the average reading from visibility for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075749 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: value, level, reading, type
Sensor: drought_index | fields: lat, lon, qc, reading
Task: Retrieve reading from visibility whose unit is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075750 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: depth, unit, value, level
Sensor: sunlight | fields: unit, reading, lon, depth
Task: Get reading from air_quality where reading exceeds the maximum depth from sunlight for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075751 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: ts, lat, lon, reading
Sensor: pressure | fields: lon, qc, unit, lat
Task: Fetch level from temperature that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075752 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: reading, ts, unit, type
Sensor: cloud_cover | fields: lon, value, lat, ts
Task: Get reading from rainfall where value exceeds the maximum depth from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075753 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: qc, ts, depth, reading
Sensor: soil_moisture | fields: reading, ts, lat, lon
Task: Retrieve level from frost that have at least one matching reading in soil_moisture sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075754 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: ts, type, qc, unit
Sensor: uv_index | fields: qc, reading, level, value
Task: Fetch lon from cloud_cover where value is greater than the total of reading in uv_index for matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075755 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: lat, lon, level, value
Sensor: lightning | fields: lon, reading, lat, type
Task: Get reading from turbidity where reading exceeds the count of depth from lightning for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075756 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: reading, level, unit, lat
Sensor: soil_moisture | fields: lon, lat, ts, reading
Task: Retrieve reading from temperature that have at least one matching reading in soil_moisture sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075757 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: qc, lat, reading, ts
Sensor: cloud_cover | fields: qc, lon, reading, level
Task: Fetch lat from humidity that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075758 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: ts, value, unit, reading
Sensor: drought_index | fields: depth, reading, qc, lat
Task: Fetch value from snow_depth that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075759 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: qc, reading, lon, depth
Sensor: temperature | fields: lon, lat, reading, qc
Task: Retrieve level from rainfall whose ts is found in temperature records where unit matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075760 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: value, lon, unit, lat
Sensor: drought_index | fields: lon, qc, lat, ts
Task: Get reading from rainfall where type appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075761 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: depth, lon, unit, type
Sensor: pressure | fields: depth, lat, type, value
Task: Fetch depth from cloud_cover that have at least one corresponding pressure measurement for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075762 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: reading, ts, qc, type
Sensor: frost | fields: type, level, unit, ts
Task: Fetch reading from turbidity that have at least one corresponding frost measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075763 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: lat, value, level, unit
Sensor: visibility | fields: level, type, qc, ts
Task: Get lat from humidity where a corresponding entry exists in visibility with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075764 | train |
v2 | Sensor network script:
Node: snow_depth | code: ref | fields: level, lon, reading, qc
Sensor: wind_speed | fields: ts, lon, level, reading
Task: Get lon from snow_depth where a corresponding entry exists in wind_speed with the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075765 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: qc, lon, depth, value
Sensor: visibility | fields: lon, depth, qc, reading
Task: Fetch level from rainfall that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075766 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: lon, reading, depth, type
Sensor: cloud_cover | fields: level, reading, lat, value
Task: Get value from soil_moisture where reading exceeds the count of value from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075767 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: ts, reading, qc, level
Sensor: uv_index | fields: qc, type, level, lat
Task: Fetch lon from air_quality where ts exists in uv_index sensor data for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075768 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: depth, level, ts, lat
Sensor: sunlight | fields: level, qc, lat, value
Task: Retrieve value from pressure whose depth is found in sunlight records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075769 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: level, reading, type, ts
Sensor: evaporation | fields: level, type, qc, reading
Task: Retrieve reading from turbidity that have at least one matching reading in evaporation sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075770 | train |
v3 | Sensor network script:
Node: dew_point | code: mst | fields: ts, depth, lon, unit
Sensor: wind_speed | fields: depth, unit, lat, reading
Task: Retrieve level from dew_point with reading above the COUNT(value) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "level",
"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_075771 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: lat, type, ts, unit
Sensor: visibility | fields: unit, lon, depth, level
Task: Fetch lat from lightning where depth exists in visibility sensor data for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075772 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: ts, value, depth, lat
Sensor: uv_index | fields: value, depth, level, unit
Task: Get value from frost where ts appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075773 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: unit, type, reading, level
Sensor: dew_point | fields: qc, reading, unit, value
Task: Fetch level from evaporation where value is greater than the total of reading in dew_point for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075774 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: type, lon, ts, qc
Sensor: pressure | fields: ts, depth, lat, level
Task: Retrieve reading from sunlight that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075775 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: depth, level, ts, type
Sensor: soil_moisture | fields: level, type, value, qc
Task: Get reading from lightning where value exceeds the total depth from soil_moisture for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075776 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: level, depth, unit, ts
Sensor: sunlight | fields: ts, type, lat, value
Task: Fetch depth from visibility where ts exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075777 | train |
v1 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, type, depth, unit
Sensor: lightning | fields: depth, value, unit, reading
Task: Get lon from soil_moisture where depth appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075778 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: lon, ts, level, type
Sensor: temperature | fields: ts, reading, qc, lon
Task: Retrieve lon from frost with value above the COUNT(depth) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075779 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: lon, ts, reading, type
Sensor: temperature | fields: ts, type, reading, depth
Task: Fetch lat from lightning that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075780 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: value, reading, lon, depth
Sensor: rainfall | fields: level, lat, value, qc
Task: Fetch lat from pressure that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075781 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: unit, depth, qc, reading
Sensor: turbidity | fields: ts, unit, lat, type
Task: Get reading from wind_speed where reading exceeds the total reading from turbidity for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075782 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: unit, type, ts, lat
Sensor: uv_index | fields: lon, ts, depth, qc
Task: Get reading from sunlight where a corresponding entry exists in uv_index with the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075783 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, unit, type, value
Sensor: pressure | fields: value, level, lat, type
Task: Get value from snow_depth where reading exceeds the maximum reading from pressure for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075784 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: lat, lon, reading, type
Sensor: lightning | fields: qc, value, reading, type
Task: Fetch lon from wind_speed that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075785 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: level, unit, qc, depth
Sensor: drought_index | fields: lat, unit, level, value
Task: Get value from cloud_cover where value exceeds the total value from drought_index for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075786 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: lat, level, type, reading
Sensor: air_quality | fields: qc, reading, lat, lon
Task: Retrieve lat from cloud_cover that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075787 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: ts, type, value, unit
Sensor: humidity | fields: ts, type, reading, unit
Task: Fetch lat from dew_point where depth is greater than the total of value in humidity for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075788 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: lat, depth, reading, qc
Sensor: sunlight | fields: unit, depth, level, qc
Task: Fetch lon from rainfall where depth is greater than the average of value in sunlight for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075789 | train |
v1 | Sensor network script:
Node: soil_moisture | code: prt | fields: depth, ts, qc, value
Sensor: lightning | fields: type, depth, lat, lon
Task: Fetch level from soil_moisture where type exists in lightning sensor data for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075790 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: qc, depth, ts, value
Sensor: uv_index | fields: qc, lat, value, lon
Task: Retrieve value from lightning that have at least one matching reading in uv_index sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075791 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: level, reading, lat, lon
Sensor: visibility | fields: unit, reading, level, lon
Task: Fetch level from dew_point that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075792 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: depth, lon, lat, qc
Sensor: evaporation | fields: value, unit, lat, lon
Task: Fetch depth from frost where value is greater than the minimum of value in evaporation for matching qc.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075793 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: level, type, ts, depth
Sensor: cloud_cover | fields: ts, value, lon, depth
Task: Retrieve value from turbidity that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075794 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: lon, type, value, qc
Sensor: lightning | fields: unit, ts, depth, qc
Task: Retrieve lon from cloud_cover whose qc is found in lightning records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075795 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: qc, unit, lat, reading
Sensor: wind_speed | fields: lat, reading, ts, value
Task: Get depth from lightning where unit appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075796 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: lat, reading, value, depth
Sensor: air_quality | fields: lat, qc, lon, depth
Task: Get level from rainfall where a corresponding entry exists in air_quality with the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075797 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: reading, value, level, qc
Sensor: pressure | fields: lat, lon, ts, reading
Task: Fetch reading from drought_index that have at least one corresponding pressure measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075798 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: reading, value, unit, ts
Sensor: humidity | fields: lat, lon, level, unit
Task: Get value from evaporation where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.