variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: dew_point | code: hub | fields: lat, unit, level, ts
Sensor: air_quality | fields: level, qc, lon, depth
Task: Get value from dew_point where type appears in air_quality readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075100 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: lon, lat, value, level
Sensor: lightning | fields: depth, value, lat, lon
Task: Retrieve reading from frost whose depth is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075101 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, ts, level, reading
Sensor: uv_index | fields: reading, lon, depth, level
Task: Get level from soil_moisture where a corresponding entry exists in uv_index with the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "soil_moisture",
"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_075102 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: lon, lat, value, level
Sensor: uv_index | fields: qc, unit, type, value
Task: Get reading from evaporation where ts appears in uv_index readings with matching type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075103 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: value, type, lat, depth
Sensor: pressure | fields: level, value, reading, qc
Task: Fetch reading from visibility where type exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075104 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: ts, type, lon, reading
Sensor: air_quality | fields: unit, lon, lat, reading
Task: Fetch value from lightning where type exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075105 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: unit, value, ts, level
Sensor: evaporation | fields: ts, lon, qc, unit
Task: Fetch reading from frost where qc exists in evaporation sensor data for the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075106 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: qc, type, lat, ts
Sensor: air_quality | fields: value, depth, lon, level
Task: Fetch lat from pressure where qc exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075107 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: unit, ts, qc, depth
Sensor: sunlight | fields: lon, ts, lat, unit
Task: Get depth from lightning where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075108 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: reading, value, type, depth
Sensor: soil_moisture | fields: ts, value, unit, lon
Task: Retrieve level from rainfall that have at least one matching reading in soil_moisture sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075109 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: unit, ts, lat, type
Sensor: frost | fields: level, lat, ts, value
Task: Get depth from humidity where a corresponding entry exists in frost with the same type.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075110 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: ts, value, lat, reading
Sensor: humidity | fields: ts, unit, reading, lat
Task: Retrieve level from evaporation whose unit is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075111 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: ts, lat, unit, qc
Sensor: temperature | fields: ts, unit, qc, lon
Task: Retrieve lon from lightning with depth above the SUM(depth) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("temperature", code="thr"),
match="type"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075112 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: lat, depth, value, ts
Sensor: evaporation | fields: depth, value, type, qc
Task: Fetch value from humidity where depth is greater than the count of of reading in evaporation for matching depth.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075113 | train |
v2 | Sensor network script:
Node: dew_point | code: ref | fields: level, unit, depth, qc
Sensor: sunlight | fields: level, qc, depth, lat
Task: Get value from dew_point where a corresponding entry exists in sunlight with the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075114 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: lon, level, lat, reading
Sensor: pressure | fields: lat, reading, unit, type
Task: Fetch level from turbidity where depth is greater than the average of reading in pressure for matching type.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075115 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: ts, type, level, unit
Sensor: snow_depth | fields: lon, value, lat, unit
Task: Get depth from pressure where depth exceeds the total depth from snow_depth for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075116 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: qc, depth, value, level
Sensor: evaporation | fields: reading, ts, unit, depth
Task: Fetch lon from temperature where depth exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075117 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: lon, reading, depth, value
Sensor: dew_point | fields: value, lat, ts, depth
Task: Retrieve level from cloud_cover that have at least one matching reading in dew_point sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075118 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: depth, qc, type, reading
Sensor: frost | fields: depth, lon, unit, ts
Task: Fetch value from air_quality where depth exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="qc",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075119 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: ts, reading, value, type
Sensor: snow_depth | fields: unit, value, lat, depth
Task: Fetch depth from temperature where qc exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075120 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: qc, type, reading, value
Sensor: frost | fields: lon, ts, depth, qc
Task: Fetch level from air_quality that have at least one corresponding frost measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075121 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: depth, unit, lat, type
Sensor: dew_point | fields: reading, lat, qc, type
Task: Get lon from air_quality where reading exceeds the total depth from dew_point for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075122 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: ts, reading, lat, type
Sensor: turbidity | fields: depth, value, qc, lon
Task: Get value from sunlight where a corresponding entry exists in turbidity with the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075123 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: ts, value, depth, lon
Sensor: uv_index | fields: type, ts, value, lat
Task: Get lat from wind_speed where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075124 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: value, qc, lon, level
Sensor: turbidity | fields: lon, value, type, reading
Task: Fetch level from drought_index where value is greater than the count of of reading in turbidity for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075125 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: value, type, level, unit
Sensor: wind_speed | fields: depth, level, lon, qc
Task: Get lon from air_quality where ts appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075126 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: type, reading, ts, depth
Sensor: soil_moisture | fields: lat, reading, depth, lon
Task: Fetch reading from uv_index that have at least one corresponding soil_moisture measurement for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="reading",
) | {
"outer_table": "uv_index",
"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_075127 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: ts, value, qc, depth
Sensor: cloud_cover | fields: level, lat, lon, type
Task: Get reading from snow_depth where reading exceeds the average value from cloud_cover for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075128 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: type, lat, value, qc
Sensor: uv_index | fields: qc, ts, value, lon
Task: Fetch depth from pressure that have at least one corresponding uv_index measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075129 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: ts, value, qc, reading
Sensor: frost | fields: reading, depth, qc, type
Task: Get depth from lightning where a corresponding entry exists in frost with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075130 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: depth, lat, qc, type
Sensor: pressure | fields: ts, qc, value, reading
Task: Get lat from dew_point where qc appears in pressure readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075131 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: unit, reading, level, lat
Sensor: air_quality | fields: depth, ts, type, level
Task: Get lat from drought_index where a corresponding entry exists in air_quality with the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075132 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: type, qc, ts, value
Sensor: visibility | fields: value, qc, lat, unit
Task: Get lat from wind_speed where depth exceeds the maximum depth from visibility for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="type"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075133 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: qc, reading, value, lon
Sensor: air_quality | fields: lat, value, level, unit
Task: Get reading from lightning where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"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_075134 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: value, depth, lat, unit
Sensor: lightning | fields: ts, unit, depth, qc
Task: Retrieve depth from air_quality that have at least one matching reading in lightning sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075135 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: lon, ts, type, value
Sensor: sunlight | fields: level, reading, lat, lon
Task: Retrieve value from evaporation whose ts is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075136 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: value, type, depth, level
Sensor: evaporation | fields: type, unit, level, ts
Task: Retrieve lat from humidity that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075137 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: ts, type, unit, reading
Sensor: rainfall | fields: depth, value, ts, lon
Task: Fetch lon from snow_depth that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075138 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: type, reading, qc, value
Sensor: drought_index | fields: ts, qc, unit, lon
Task: Get lon from evaporation where value exceeds the count of reading from drought_index for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075139 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: type, lat, level, depth
Sensor: evaporation | fields: depth, type, qc, lat
Task: Get value from temperature where a corresponding entry exists in evaporation with the same ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075140 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: lon, lat, qc, type
Sensor: dew_point | fields: depth, unit, lat, lon
Task: Get lon from air_quality where reading exceeds the maximum value from dew_point for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075141 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: type, ts, qc, reading
Sensor: pressure | fields: unit, depth, level, reading
Task: Retrieve level from dew_point that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075142 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: lon, type, ts, depth
Sensor: soil_moisture | fields: value, depth, qc, lat
Task: Retrieve lon from lightning whose qc is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075143 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: qc, ts, level, value
Sensor: dew_point | fields: qc, value, reading, depth
Task: Retrieve reading from drought_index whose qc is found in dew_point records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075144 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: depth, lon, unit, level
Sensor: soil_moisture | fields: ts, reading, lon, depth
Task: Get level from temperature where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075145 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: lon, value, depth, type
Sensor: frost | fields: value, lat, reading, qc
Task: Get level from lightning where a corresponding entry exists in frost with the same type.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075146 | train |
v3 | Sensor network script:
Node: dew_point | code: mst | fields: reading, type, unit, level
Sensor: humidity | fields: unit, value, ts, level
Task: Get level from dew_point where reading exceeds the total depth from humidity for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075147 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: ts, qc, unit, lon
Sensor: soil_moisture | fields: depth, qc, value, lon
Task: Fetch depth from lightning where type exists in soil_moisture sensor data for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075148 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: level, depth, ts, reading
Sensor: humidity | fields: qc, ts, value, depth
Task: Fetch lon from air_quality where reading is greater than the average of reading in humidity for matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075149 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: type, level, qc, ts
Sensor: wind_speed | fields: level, qc, unit, reading
Task: Retrieve depth from frost whose depth is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075150 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: lon, level, ts, lat
Sensor: dew_point | fields: value, type, depth, unit
Task: Retrieve value from visibility whose ts is found in dew_point records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075151 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: type, value, depth, reading
Sensor: sunlight | fields: qc, ts, value, lat
Task: Fetch reading from lightning that have at least one corresponding sunlight measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075152 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: qc, type, reading, level
Sensor: snow_depth | fields: lon, type, ts, unit
Task: Get reading from rainfall where qc appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075153 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: value, level, lon, ts
Sensor: snow_depth | fields: lon, depth, qc, level
Task: Get lat from humidity where depth exceeds the minimum reading from snow_depth for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075154 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: qc, value, level, reading
Sensor: snow_depth | fields: type, ts, lat, unit
Task: Fetch level from air_quality that have at least one corresponding snow_depth measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075155 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: depth, ts, value, type
Sensor: turbidity | fields: lon, value, type, reading
Task: Retrieve lat from pressure that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075156 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: depth, level, lon, qc
Sensor: evaporation | fields: unit, level, lat, reading
Task: Get lat from rainfall where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075157 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: qc, unit, type, lon
Sensor: cloud_cover | fields: reading, lon, lat, unit
Task: Get reading from turbidity where unit appears in cloud_cover readings with matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075158 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: value, depth, ts, qc
Sensor: humidity | fields: depth, ts, level, unit
Task: Get reading from drought_index where depth appears in humidity readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075159 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: ts, lat, reading, value
Sensor: turbidity | fields: unit, reading, lat, lon
Task: Fetch reading from pressure where depth is greater than the count of of depth in turbidity for matching unit.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075160 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: ts, reading, lon, qc
Sensor: turbidity | fields: unit, lon, qc, value
Task: Get depth from snow_depth where a corresponding entry exists in turbidity with the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075161 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, qc, unit, type
Sensor: snow_depth | fields: type, depth, level, lon
Task: Fetch lon from soil_moisture where reading is greater than the total of value in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075162 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: depth, level, value, reading
Sensor: evaporation | fields: depth, reading, lon, value
Task: Retrieve level from pressure that have at least one matching reading in evaporation sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075163 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: value, qc, ts, level
Sensor: uv_index | fields: type, value, level, unit
Task: Fetch depth from drought_index where qc exists in uv_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075164 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: value, depth, ts, lat
Sensor: evaporation | fields: lat, lon, reading, unit
Task: Get level from air_quality where value exceeds the total depth from evaporation for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075165 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: lon, level, unit, value
Sensor: uv_index | fields: unit, level, ts, lat
Task: Retrieve lon from frost whose qc is found in uv_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075166 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: depth, lon, value, ts
Sensor: rainfall | fields: lat, level, depth, reading
Task: Fetch lon from drought_index where depth is greater than the average of reading in rainfall for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075167 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: ts, lon, value, qc
Sensor: wind_speed | fields: qc, ts, unit, lat
Task: Get lat from humidity where value exceeds the count of value from wind_speed for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075168 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: level, reading, type, qc
Sensor: snow_depth | fields: qc, type, ts, unit
Task: Retrieve depth from temperature whose type is found in snow_depth records where qc matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075169 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: qc, unit, value, type
Sensor: air_quality | fields: type, lat, lon, value
Task: Retrieve lat from drought_index whose unit is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075170 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: reading, lat, type, unit
Sensor: humidity | fields: unit, lon, type, qc
Task: Retrieve lon from snow_depth with depth above the MIN(depth) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075171 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: unit, depth, value, lat
Sensor: snow_depth | fields: lat, reading, ts, unit
Task: Get lat from cloud_cover where reading exceeds the minimum value from snow_depth for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075172 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: unit, ts, level, type
Sensor: uv_index | fields: depth, unit, reading, qc
Task: Retrieve value from evaporation whose type is found in uv_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075173 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: unit, value, lon, lat
Sensor: visibility | fields: lon, ts, unit, level
Task: Get depth from lightning where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075174 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: lat, reading, level, ts
Sensor: sunlight | fields: lat, qc, unit, level
Task: Fetch lat from turbidity where reading is greater than the minimum of reading in sunlight for matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075175 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: value, lat, type, reading
Sensor: turbidity | fields: lat, type, unit, reading
Task: Retrieve lat from snow_depth that have at least one matching reading in turbidity sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075176 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: level, lat, type, value
Sensor: soil_moisture | fields: value, level, qc, reading
Task: Retrieve level from drought_index with value above the COUNT(depth) of soil_moisture readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075177 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: level, depth, lat, qc
Sensor: cloud_cover | fields: lon, ts, lat, reading
Task: Get lat from evaporation where ts appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075178 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: level, reading, lon, value
Sensor: rainfall | fields: unit, value, lat, depth
Task: Get value from dew_point where depth appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075179 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: value, depth, ts, type
Sensor: drought_index | fields: unit, value, lon, depth
Task: Retrieve level from wind_speed that have at least one matching reading in drought_index sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075180 | train |
v3 | Sensor network script:
Node: evaporation | code: ref | fields: lat, depth, reading, ts
Sensor: uv_index | fields: lon, unit, lat, level
Task: Get lat from evaporation where depth exceeds the average reading from uv_index for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075181 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: ts, depth, value, level
Sensor: humidity | fields: unit, value, reading, type
Task: Fetch reading from soil_moisture where type exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075182 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: unit, reading, ts, qc
Sensor: wind_speed | fields: lat, qc, reading, lon
Task: Fetch level from temperature where depth exists in wind_speed sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075183 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: ts, reading, lat, depth
Sensor: turbidity | fields: value, reading, qc, lat
Task: Retrieve value from sunlight whose type is found in turbidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075184 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: reading, type, lon, level
Sensor: frost | fields: reading, qc, lat, value
Task: Get lat from cloud_cover where qc appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075185 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: unit, qc, depth, value
Sensor: pressure | fields: ts, lon, type, reading
Task: Get level from frost where depth exceeds the total reading from pressure for the same type.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075186 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: value, unit, reading, ts
Sensor: evaporation | fields: value, qc, unit, level
Task: Fetch value from cloud_cover that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075187 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, ts, type, lat
Sensor: evaporation | fields: depth, type, qc, ts
Task: Fetch lon from wind_speed that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075188 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: lat, lon, level, ts
Sensor: uv_index | fields: ts, qc, value, depth
Task: Fetch lat from evaporation where value is greater than the minimum of depth in uv_index for matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075189 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: reading, ts, level, depth
Sensor: humidity | fields: value, unit, qc, level
Task: Get value from evaporation where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075190 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: type, lat, reading, qc
Sensor: humidity | fields: reading, value, unit, depth
Task: Retrieve reading from turbidity whose ts is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075191 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: type, value, lon, unit
Sensor: visibility | fields: type, qc, level, ts
Task: Get lat from soil_moisture where a corresponding entry exists in visibility with the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075192 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: lon, reading, lat, level
Sensor: rainfall | fields: lat, type, qc, value
Task: Retrieve reading from drought_index whose depth is found in rainfall records where depth matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075193 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: reading, lon, qc, unit
Sensor: visibility | fields: unit, level, type, reading
Task: Retrieve lat from lightning whose type is found in visibility records where depth matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075194 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: level, depth, unit, value
Sensor: wind_speed | fields: lat, qc, lon, reading
Task: Get reading from rainfall where reading exceeds the average depth from wind_speed for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075195 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: value, depth, unit, type
Sensor: frost | fields: lon, type, unit, level
Task: Get reading from cloud_cover where depth appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075196 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: type, lat, level, reading
Sensor: uv_index | fields: depth, level, lon, qc
Task: Fetch reading from visibility where reading is greater than the average of depth in uv_index for matching type.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075197 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: lon, value, level, unit
Sensor: rainfall | fields: ts, depth, unit, type
Task: Fetch value from air_quality where depth is greater than the average of value in rainfall for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075198 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: qc, lat, unit, value
Sensor: evaporation | fields: ts, lon, level, reading
Task: Get value from sunlight where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075199 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.