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: ref | fields: reading, type, depth, unit
Sensor: pressure | fields: reading, depth, qc, ts
Task: Get lon from dew_point where unit appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004700 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: value, lon, qc, depth
Sensor: visibility | fields: reading, ts, type, qc
Task: Fetch lat from rainfall that have at least one corresponding visibility measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004701 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: type, lon, level, ts
Sensor: evaporation | fields: depth, unit, lat, level
Task: Retrieve value from drought_index with depth above the SUM(depth) of evaporation readings sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004702 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: unit, type, lon, ts
Sensor: sunlight | fields: lon, type, depth, reading
Task: Get lon from temperature where a corresponding entry exists in sunlight with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004703 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, level, qc, value
Sensor: humidity | fields: lat, depth, ts, unit
Task: Retrieve lon from soil_moisture whose qc is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004704 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: lon, ts, depth, value
Sensor: evaporation | fields: ts, value, qc, lon
Task: Fetch reading from air_quality that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004705 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: ts, value, reading, depth
Sensor: pressure | fields: ts, lon, lat, type
Task: Retrieve value from cloud_cover that have at least one matching reading in pressure sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004706 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: lon, value, reading, level
Sensor: frost | fields: depth, lon, type, value
Task: Fetch depth from sunlight that have at least one corresponding frost measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004707 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: lat, reading, qc, ts
Sensor: soil_moisture | fields: qc, lon, level, type
Task: Fetch depth from evaporation where value is greater than the average of value in soil_moisture for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004708 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: ts, value, lon, depth
Sensor: rainfall | fields: qc, unit, reading, level
Task: Get lat from evaporation where depth appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004709 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: value, qc, level, ts
Sensor: visibility | fields: lat, unit, depth, type
Task: Retrieve lon from air_quality with reading above the AVG(depth) of visibility readings sharing the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004710 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: qc, type, ts, unit
Sensor: frost | fields: value, lon, qc, reading
Task: Retrieve reading from visibility that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="reading",
) | {
"outer_table": "visibility",
"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_004711 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: level, depth, ts, value
Sensor: pressure | fields: qc, lat, value, depth
Task: Get value from frost where depth appears in pressure readings with matching ts.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004712 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: level, type, reading, value
Sensor: humidity | fields: level, lat, qc, depth
Task: Fetch depth from sunlight that have at least one corresponding humidity measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004713 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: lon, lat, ts, depth
Sensor: visibility | fields: reading, type, lat, depth
Task: Get lon from snow_depth where unit appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004714 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: depth, reading, lat, type
Sensor: rainfall | fields: depth, lat, type, qc
Task: Fetch level from sunlight where reading is greater than the minimum of depth in rainfall for matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004715 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, lon, value, depth
Sensor: rainfall | fields: ts, reading, type, unit
Task: Fetch reading from wind_speed where qc exists in rainfall sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004716 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: type, value, reading, level
Sensor: rainfall | fields: depth, unit, ts, qc
Task: Retrieve lat from pressure whose ts is found in rainfall records where qc matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004717 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: lon, ts, reading, level
Sensor: evaporation | fields: ts, lon, lat, type
Task: Get lon from dew_point where a corresponding entry exists in evaporation with the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004718 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: level, lon, lat, value
Sensor: frost | fields: depth, reading, unit, ts
Task: Retrieve depth from rainfall whose ts is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="type",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004719 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: ts, qc, lon, unit
Sensor: humidity | fields: reading, type, unit, lon
Task: Fetch lon from turbidity where value is greater than the maximum of value in humidity for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004720 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: unit, level, type, ts
Sensor: air_quality | fields: unit, lat, depth, level
Task: Get lat from cloud_cover where value exceeds the count of depth from air_quality for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004721 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: depth, level, qc, unit
Sensor: dew_point | fields: lon, value, ts, reading
Task: Get level from drought_index where reading exceeds the maximum depth from dew_point for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004722 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: lat, level, reading, type
Sensor: cloud_cover | fields: unit, value, lat, ts
Task: Fetch level from temperature that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004723 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: type, ts, level, lon
Sensor: lightning | fields: lat, unit, ts, reading
Task: Retrieve lon from rainfall whose qc is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004724 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: qc, reading, level, unit
Sensor: humidity | fields: level, reading, ts, value
Task: Fetch level from rainfall where unit exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004725 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: depth, level, lon, value
Sensor: evaporation | fields: value, type, level, lat
Task: Retrieve lat from dew_point that have at least one matching reading in evaporation sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004726 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: level, value, lon, reading
Sensor: soil_moisture | fields: level, lon, type, depth
Task: Retrieve level from uv_index whose ts is found in soil_moisture records where unit matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004727 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: reading, unit, depth, lat
Sensor: snow_depth | fields: depth, ts, qc, unit
Task: Retrieve lat from uv_index with depth above the COUNT(value) of snow_depth readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004728 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: level, unit, value, type
Sensor: cloud_cover | fields: lat, lon, ts, qc
Task: Get lon from air_quality where value exceeds the minimum value from cloud_cover for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004729 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: type, level, depth, lon
Sensor: turbidity | fields: qc, level, value, depth
Task: Fetch value from visibility where depth exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004730 | train |
v3 | Sensor network script:
Node: humidity | code: prt | fields: type, qc, reading, ts
Sensor: frost | fields: type, level, lat, value
Task: Fetch lon from humidity where reading is greater than the maximum of depth in frost for matching type.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("frost", code="frs"),
match="type"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004731 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: lon, value, reading, unit
Sensor: air_quality | fields: unit, lat, qc, type
Task: Retrieve reading from dew_point that have at least one matching reading in air_quality sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004732 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: ts, unit, qc, value
Sensor: snow_depth | fields: depth, lon, ts, unit
Task: Fetch lat from temperature where depth is greater than the count of of value in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004733 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: reading, lon, value, level
Sensor: pressure | fields: qc, depth, value, type
Task: Retrieve depth from drought_index that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004734 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: ts, qc, value, unit
Sensor: sunlight | fields: ts, type, lon, lat
Task: Fetch level from drought_index that have at least one corresponding sunlight measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004735 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: type, unit, lon, depth
Sensor: frost | fields: depth, qc, type, unit
Task: Retrieve lat from rainfall whose unit is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004736 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: level, unit, qc, lat
Sensor: snow_depth | fields: value, qc, lat, type
Task: Get level from rainfall where depth exceeds the total depth from snow_depth for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "level",
"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_004737 | train |
v3 | Sensor network script:
Node: dew_point | code: mst | fields: level, lon, unit, qc
Sensor: air_quality | fields: ts, reading, lat, lon
Task: Retrieve lon from dew_point with depth above the MAX(reading) of air_quality readings sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004738 | train |
v3 | Sensor network script:
Node: rainfall | code: ref | fields: qc, lon, type, lat
Sensor: turbidity | fields: lon, type, unit, reading
Task: Fetch depth from rainfall where value is greater than the maximum of depth in turbidity for matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004739 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: depth, level, lon, type
Sensor: humidity | fields: lon, type, depth, reading
Task: Get reading from frost where type appears in humidity readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004740 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: type, unit, ts, reading
Sensor: wind_speed | fields: level, unit, value, qc
Task: Get value from air_quality where a corresponding entry exists in wind_speed with the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004741 | train |
v2 | Sensor network script:
Node: uv_index | code: gst | fields: type, value, lat, level
Sensor: rainfall | fields: qc, value, lon, type
Task: Get lon from uv_index where a corresponding entry exists in rainfall with the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004742 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: ts, type, value, lat
Sensor: wind_speed | fields: ts, lon, unit, value
Task: Fetch lat from drought_index where depth is greater than the maximum of depth in wind_speed for matching type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004743 | train |
v3 | Sensor network script:
Node: humidity | code: gst | fields: value, type, qc, reading
Sensor: cloud_cover | fields: qc, ts, level, value
Task: Get reading from humidity where reading exceeds the average reading from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004744 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: unit, level, lon, reading
Sensor: frost | fields: lat, ts, depth, level
Task: Fetch lat from turbidity that have at least one corresponding frost measurement for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004745 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: ts, depth, qc, lon
Sensor: soil_moisture | fields: lon, reading, ts, qc
Task: Get reading from air_quality where type appears in soil_moisture readings with matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004746 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: depth, type, ts, level
Sensor: air_quality | fields: qc, value, lon, level
Task: Retrieve reading from pressure with reading above the AVG(depth) of air_quality readings sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004747 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: lat, qc, unit, value
Sensor: frost | fields: ts, type, lon, lat
Task: Get reading from sunlight where type appears in frost readings with matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004748 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: qc, unit, depth, reading
Sensor: uv_index | fields: qc, depth, lon, reading
Task: Fetch level from dew_point where type exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004749 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: type, unit, level, lat
Sensor: temperature | fields: type, unit, lat, value
Task: Fetch value from sunlight where ts exists in temperature sensor data for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004750 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: unit, value, depth, lon
Sensor: temperature | fields: ts, value, level, lat
Task: Retrieve lon from evaporation whose depth is found in temperature records where unit matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="unit",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004751 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: unit, type, level, reading
Sensor: cloud_cover | fields: lat, depth, unit, value
Task: Get value from evaporation where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004752 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: depth, value, qc, lon
Sensor: turbidity | fields: lat, lon, level, type
Task: Retrieve depth from drought_index whose ts is found in turbidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004753 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: lon, lat, unit, ts
Sensor: evaporation | fields: qc, unit, value, type
Task: Get lon from sunlight where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004754 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: reading, level, unit, ts
Sensor: cloud_cover | fields: lon, value, ts, qc
Task: Retrieve value from turbidity whose depth is found in cloud_cover records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004755 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: lat, lon, value, qc
Sensor: rainfall | fields: level, type, qc, lat
Task: Fetch value from dew_point that have at least one corresponding rainfall measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004756 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: ts, unit, value, lat
Sensor: sunlight | fields: reading, value, level, type
Task: Fetch level from lightning where type exists in sunlight sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004757 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: reading, type, lon, depth
Sensor: cloud_cover | fields: type, depth, lat, value
Task: Fetch lon from pressure where ts exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004758 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: level, unit, reading, lon
Sensor: dew_point | fields: lon, reading, depth, lat
Task: Get depth from air_quality where qc appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004759 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: ts, level, qc, type
Sensor: soil_moisture | fields: unit, depth, lon, lat
Task: Fetch depth from pressure where type exists in soil_moisture sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004760 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: unit, depth, reading, level
Sensor: pressure | fields: unit, lon, reading, ts
Task: Retrieve value from temperature whose depth is found in pressure records where qc matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004761 | train |
v2 | Sensor network script:
Node: visibility | code: prt | fields: depth, ts, qc, type
Sensor: turbidity | fields: lon, ts, level, reading
Task: Retrieve level from visibility that have at least one matching reading in turbidity sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004762 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: lat, lon, value, ts
Sensor: sunlight | fields: lat, qc, value, level
Task: Get reading from cloud_cover where unit appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004763 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: unit, ts, value, qc
Sensor: turbidity | fields: ts, unit, value, type
Task: Get level from visibility where a corresponding entry exists in turbidity with the same type.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004764 | train |
v2 | Sensor network script:
Node: wind_speed | code: ref | fields: lon, reading, depth, type
Sensor: air_quality | fields: unit, reading, value, type
Task: Fetch level from wind_speed that have at least one corresponding air_quality measurement for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004765 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: value, qc, unit, lat
Sensor: evaporation | fields: qc, level, lat, reading
Task: Fetch lon from sunlight where reading is greater than the minimum of depth in evaporation for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004766 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: unit, reading, depth, level
Sensor: wind_speed | fields: reading, type, lon, qc
Task: Retrieve lon from drought_index that have at least one matching reading in wind_speed sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004767 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: lon, ts, depth, value
Sensor: lightning | fields: lat, level, reading, lon
Task: Get value from drought_index where qc appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004768 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: lon, value, depth, type
Sensor: soil_moisture | fields: value, lon, type, reading
Task: Retrieve lon from snow_depth that have at least one matching reading in soil_moisture sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004769 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: lat, unit, qc, lon
Sensor: soil_moisture | fields: lon, reading, depth, unit
Task: Fetch reading from visibility where depth exists in soil_moisture sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004770 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: ts, lat, value, unit
Sensor: dew_point | fields: lat, unit, qc, lon
Task: Get value from pressure where a corresponding entry exists in dew_point with the same ts.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004771 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: lon, ts, reading, depth
Sensor: evaporation | fields: ts, depth, reading, unit
Task: Retrieve level from lightning whose type is found in evaporation records where qc matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004772 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: depth, qc, type, ts
Sensor: drought_index | fields: type, depth, ts, level
Task: Get lat from lightning where a corresponding entry exists in drought_index with the same ts.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004773 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: lon, value, ts, unit
Sensor: snow_depth | fields: lat, level, type, reading
Task: Retrieve lat from humidity whose ts is found in snow_depth records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004774 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: depth, lon, qc, ts
Sensor: uv_index | fields: depth, reading, lat, unit
Task: Retrieve depth from humidity with reading above the SUM(reading) of uv_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004775 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: value, type, level, ts
Sensor: soil_moisture | fields: reading, value, level, depth
Task: Retrieve depth from pressure whose type is found in soil_moisture records where unit matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004776 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: reading, lat, qc, depth
Sensor: snow_depth | fields: lat, value, unit, lon
Task: Retrieve level from evaporation that have at least one matching reading in snow_depth sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004777 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: qc, type, lat, lon
Sensor: sunlight | fields: level, reading, unit, qc
Task: Fetch lat from visibility where ts exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004778 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: unit, depth, value, type
Sensor: dew_point | fields: depth, type, lon, level
Task: Retrieve depth from air_quality with depth above the SUM(value) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004779 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: lat, lon, value, type
Sensor: rainfall | fields: type, unit, reading, level
Task: Retrieve value from cloud_cover that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004780 | train |
v2 | Sensor network script:
Node: frost | code: gst | fields: ts, level, lat, unit
Sensor: evaporation | fields: depth, value, lat, lon
Task: Retrieve depth from frost that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004781 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: level, lat, qc, unit
Sensor: lightning | fields: type, depth, unit, qc
Task: Fetch depth from soil_moisture where value is greater than the average of reading in lightning for matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004782 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: level, depth, lat, qc
Sensor: cloud_cover | fields: value, reading, type, depth
Task: Get lat from frost where reading exceeds the minimum reading from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004783 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: reading, depth, level, lat
Sensor: frost | fields: type, level, depth, qc
Task: Fetch depth from dew_point where ts exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="qc",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004784 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: type, level, qc, lat
Sensor: temperature | fields: ts, level, qc, lon
Task: Retrieve reading from uv_index with value above the COUNT(depth) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="type"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004785 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: ts, unit, qc, type
Sensor: visibility | fields: depth, type, qc, lon
Task: Get reading from humidity where qc appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004786 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: unit, ts, level, type
Sensor: frost | fields: level, unit, depth, ts
Task: Fetch depth from turbidity that have at least one corresponding frost measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004787 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: value, unit, qc, lat
Sensor: visibility | fields: type, ts, value, lat
Task: Retrieve depth from drought_index whose depth is found in visibility records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004788 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: lon, level, ts, depth
Sensor: rainfall | fields: ts, type, reading, lon
Task: Fetch depth from visibility where depth is greater than the average of reading in rainfall for matching ts.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004789 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: ts, reading, type, depth
Sensor: drought_index | fields: lon, level, qc, lat
Task: Retrieve value from dew_point with depth above the MAX(reading) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004790 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: value, reading, ts, level
Sensor: rainfall | fields: level, unit, qc, lat
Task: Retrieve lon from temperature that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004791 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: lon, qc, depth, value
Sensor: lightning | fields: value, level, reading, lat
Task: Retrieve level from frost whose type is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004792 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: depth, reading, lat, unit
Sensor: visibility | fields: value, qc, level, type
Task: Fetch lon from uv_index that have at least one corresponding visibility measurement for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004793 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: lat, level, value, lon
Sensor: visibility | fields: ts, reading, unit, level
Task: Retrieve lon from sunlight that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_004794 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: lon, qc, level, value
Sensor: humidity | fields: depth, value, qc, reading
Task: Get value from lightning where a corresponding entry exists in humidity with the same depth.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004795 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: type, ts, lon, lat
Sensor: evaporation | fields: qc, ts, lat, depth
Task: Retrieve lat from uv_index that have at least one matching reading in evaporation sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004796 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: qc, ts, lat, unit
Sensor: rainfall | fields: lat, type, value, ts
Task: Fetch level from pressure that have at least one corresponding rainfall measurement for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004797 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: value, depth, level, type
Sensor: humidity | fields: lat, type, level, reading
Task: Retrieve value from cloud_cover that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004798 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: depth, reading, value, qc
Sensor: uv_index | fields: value, depth, lon, type
Task: Get lat from humidity where type appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_004799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.