variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: frost | code: mst | fields: reading, ts, unit, level
Sensor: humidity | fields: lon, unit, depth, lat
Task: Get lon from frost where a corresponding entry exists in humidity with the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024100 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: lat, depth, reading, ts
Sensor: soil_moisture | fields: qc, value, depth, type
Task: Retrieve depth from evaporation whose depth is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024101 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: level, qc, reading, depth
Sensor: air_quality | fields: ts, qc, lat, unit
Task: Fetch lon from wind_speed where value is greater than the total of depth in air_quality for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024102 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: lat, qc, depth, lon
Sensor: cloud_cover | fields: depth, level, value, qc
Task: Retrieve depth from uv_index whose depth is found in cloud_cover records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024103 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: depth, ts, lon, unit
Sensor: lightning | fields: value, qc, ts, depth
Task: Get lat from turbidity where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024104 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: level, qc, unit, reading
Sensor: uv_index | fields: reading, unit, lat, ts
Task: Retrieve lat from visibility whose depth is found in uv_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024105 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: qc, depth, lon, reading
Sensor: frost | fields: lon, level, unit, ts
Task: Retrieve lat from pressure with depth above the SUM(reading) of frost readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="unit"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024106 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: lon, unit, level, qc
Sensor: rainfall | fields: lon, lat, level, reading
Task: Get lat from pressure where unit appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024107 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: value, reading, depth, type
Sensor: pressure | fields: ts, reading, depth, lat
Task: Fetch depth from cloud_cover where depth exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024108 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: reading, ts, unit, type
Sensor: humidity | fields: lon, ts, value, reading
Task: Retrieve lat from snow_depth whose depth is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024109 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: reading, value, level, lat
Sensor: air_quality | fields: qc, lat, reading, level
Task: Get lon from turbidity where unit appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024110 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: type, value, reading, ts
Sensor: dew_point | fields: value, unit, reading, level
Task: Fetch lat from temperature where value is greater than the minimum of depth in dew_point for matching unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024111 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: value, level, type, qc
Sensor: air_quality | fields: unit, reading, level, lat
Task: Get lon from sunlight where unit appears in air_quality readings with matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024112 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: value, ts, lat, lon
Sensor: sunlight | fields: reading, ts, lat, level
Task: Fetch lat from uv_index where reading is greater than the average of reading in sunlight for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024113 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: reading, depth, value, qc
Sensor: evaporation | fields: unit, ts, type, lon
Task: Fetch depth from cloud_cover where qc exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024114 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: qc, depth, lon, level
Sensor: wind_speed | fields: type, value, qc, depth
Task: Retrieve reading from sunlight that have at least one matching reading in wind_speed sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024115 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: type, qc, value, depth
Sensor: soil_moisture | fields: reading, type, qc, value
Task: Fetch level from frost where ts exists in soil_moisture sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024116 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: qc, value, reading, unit
Sensor: uv_index | fields: ts, lat, type, lon
Task: Retrieve depth from wind_speed that have at least one matching reading in uv_index sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024117 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: level, ts, qc, depth
Sensor: visibility | fields: lon, unit, level, lat
Task: Get reading from drought_index where ts appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024118 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: reading, ts, level, unit
Sensor: wind_speed | fields: lat, lon, unit, ts
Task: Fetch depth from sunlight that have at least one corresponding wind_speed measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024119 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: qc, reading, lon, value
Sensor: rainfall | fields: level, type, value, reading
Task: Fetch value from snow_depth where depth is greater than the count of of reading in rainfall for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024120 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: level, depth, unit, value
Sensor: humidity | fields: depth, value, type, lat
Task: Get reading from frost where depth appears in humidity readings with matching ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024121 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: qc, depth, unit, type
Sensor: dew_point | fields: level, depth, reading, ts
Task: Retrieve value from soil_moisture with value above the AVG(depth) of dew_point readings sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024122 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: type, value, unit, level
Sensor: humidity | fields: reading, lon, qc, ts
Task: Get value from temperature where depth exceeds the maximum depth from humidity for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024123 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: qc, reading, type, ts
Sensor: drought_index | fields: unit, qc, lat, level
Task: Fetch lon from cloud_cover that have at least one corresponding drought_index measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024124 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: ts, level, unit, type
Sensor: lightning | fields: lat, depth, type, level
Task: Fetch depth from drought_index where depth is greater than the minimum of value in lightning for matching type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024125 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: level, type, depth, lon
Sensor: frost | fields: value, qc, type, lon
Task: Get depth from dew_point where depth appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024126 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: qc, unit, lat, value
Sensor: frost | fields: value, qc, unit, level
Task: Get reading from lightning where unit appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024127 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: reading, lat, level, lon
Sensor: snow_depth | fields: lon, lat, type, level
Task: Fetch value from pressure where reading is greater than the minimum of depth in snow_depth for matching type.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024128 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: unit, type, value, lat
Sensor: lightning | fields: reading, unit, ts, type
Task: Retrieve depth from turbidity whose type is found in lightning records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024129 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: unit, lat, lon, qc
Sensor: evaporation | fields: lon, value, level, qc
Task: Get value from temperature where ts appears in evaporation readings with matching qc.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024130 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: value, lat, lon, level
Sensor: evaporation | fields: value, lon, qc, type
Task: Retrieve reading from uv_index with reading above the SUM(depth) of evaporation readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024131 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: value, reading, level, type
Sensor: wind_speed | fields: lat, depth, level, type
Task: Retrieve reading from evaporation with reading above the MAX(reading) of wind_speed readings sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024132 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: value, type, lat, level
Sensor: snow_depth | fields: level, qc, value, depth
Task: Retrieve reading from turbidity that have at least one matching reading in snow_depth sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024133 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, lat, value, reading
Sensor: temperature | fields: qc, depth, lon, ts
Task: Retrieve lat from soil_moisture whose type is found in temperature records where unit matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="unit",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024134 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: value, type, level, lon
Sensor: sunlight | fields: qc, lon, ts, reading
Task: Retrieve reading from cloud_cover whose type is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024135 | train |
v2 | Sensor network script:
Node: visibility | code: prt | fields: reading, lon, level, type
Sensor: snow_depth | fields: unit, reading, level, value
Task: Fetch level from visibility that have at least one corresponding snow_depth measurement for the same type.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024136 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: value, unit, reading, level
Sensor: pressure | fields: qc, reading, lat, unit
Task: Fetch value from soil_moisture where qc exists in pressure sensor data for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024137 | train |
v2 | Sensor network script:
Node: frost | code: gst | fields: reading, type, value, qc
Sensor: air_quality | fields: lon, level, reading, unit
Task: Fetch lon from frost that have at least one corresponding air_quality measurement for the same unit.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024138 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: type, depth, lon, ts
Sensor: humidity | fields: value, reading, qc, level
Task: Retrieve lat from air_quality whose depth is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024139 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: ts, type, depth, lat
Sensor: humidity | fields: value, reading, depth, level
Task: Fetch depth from pressure where qc exists in humidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024140 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: type, level, qc, lon
Sensor: rainfall | fields: lat, level, reading, type
Task: Retrieve value from uv_index that have at least one matching reading in rainfall sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024141 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: lon, unit, type, ts
Sensor: turbidity | fields: level, lon, value, type
Task: Get depth from sunlight where a corresponding entry exists in turbidity with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024142 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: level, unit, lat, lon
Sensor: dew_point | fields: lat, ts, depth, reading
Task: Fetch level from sunlight where depth exists in dew_point sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024143 | train |
v3 | Sensor network script:
Node: frost | code: stn | fields: depth, lon, value, lat
Sensor: pressure | fields: value, unit, reading, qc
Task: Retrieve reading from frost with value above the MIN(value) of pressure readings sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024144 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: level, type, ts, value
Sensor: temperature | fields: reading, qc, lat, depth
Task: Retrieve reading from turbidity whose unit is found in temperature records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024145 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: unit, ts, qc, lat
Sensor: visibility | fields: value, lon, unit, ts
Task: Retrieve lat from temperature that have at least one matching reading in visibility sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024146 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: value, lat, type, qc
Sensor: uv_index | fields: ts, value, qc, lon
Task: Fetch reading from air_quality that have at least one corresponding uv_index measurement for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024147 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: level, type, unit, qc
Sensor: temperature | fields: lon, level, type, value
Task: Retrieve depth from cloud_cover with depth above the AVG(value) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("temperature", code="thr"),
match="type"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024148 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: depth, ts, qc, reading
Sensor: drought_index | fields: unit, qc, lat, reading
Task: Fetch depth from evaporation where ts exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="type",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024149 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: qc, value, reading, lat
Sensor: sunlight | fields: ts, type, depth, unit
Task: Retrieve reading from dew_point whose qc is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024150 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: level, value, reading, ts
Sensor: sunlight | fields: qc, lon, depth, lat
Task: Fetch lat from humidity where reading is greater than the count of of reading in sunlight for matching type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024151 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: type, level, lat, value
Sensor: visibility | fields: unit, ts, qc, value
Task: Get level from dew_point where qc appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024152 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: value, lon, ts, qc
Sensor: evaporation | fields: value, reading, depth, unit
Task: Fetch level from uv_index where type exists in evaporation sensor data for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024153 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: qc, lon, value, depth
Sensor: evaporation | fields: ts, unit, type, lat
Task: Retrieve lon from humidity with value above the AVG(value) of evaporation readings sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024154 | train |
v3 | Sensor network script:
Node: drought_index | code: mst | fields: depth, qc, unit, lat
Sensor: pressure | fields: unit, lat, ts, reading
Task: Retrieve level from drought_index with reading above the SUM(value) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"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_024155 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: level, qc, lon, lat
Sensor: snow_depth | fields: value, lon, qc, level
Task: Fetch depth from air_quality where depth is greater than the maximum of value in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024156 | train |
v1 | Sensor network script:
Node: wind_speed | code: stn | fields: ts, reading, lat, level
Sensor: rainfall | fields: reading, depth, lat, level
Task: Fetch depth from wind_speed where depth exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024157 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: unit, level, lon, depth
Sensor: snow_depth | fields: qc, reading, ts, unit
Task: Fetch value from sunlight where unit exists in snow_depth sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024158 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: type, qc, reading, lon
Sensor: snow_depth | fields: lat, lon, unit, type
Task: Get depth from sunlight where a corresponding entry exists in snow_depth with the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024159 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: lon, ts, value, qc
Sensor: temperature | fields: level, depth, unit, reading
Task: Retrieve reading from air_quality that have at least one matching reading in temperature sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024160 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: unit, lon, value, ts
Sensor: snow_depth | fields: unit, lat, ts, type
Task: Fetch reading from turbidity where depth is greater than the average of reading in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024161 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: lon, lat, reading, value
Sensor: air_quality | fields: value, reading, lon, level
Task: Get depth from dew_point where qc appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024162 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: qc, reading, depth, unit
Sensor: frost | fields: level, lon, qc, unit
Task: Retrieve value from temperature with depth above the COUNT(depth) of frost readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024163 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: lon, reading, type, depth
Sensor: frost | fields: lon, qc, type, level
Task: Retrieve value from uv_index whose type is found in frost records where depth matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="depth",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024164 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: unit, lat, reading, depth
Sensor: rainfall | fields: reading, value, unit, lat
Task: Get lat from cloud_cover where value exceeds the maximum reading from rainfall for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024165 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: ts, level, value, lat
Sensor: drought_index | fields: unit, reading, lon, type
Task: Get lat from visibility where a corresponding entry exists in drought_index with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024166 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: lat, value, qc, reading
Sensor: air_quality | fields: level, value, lat, unit
Task: Fetch lon from visibility that have at least one corresponding air_quality measurement for the same type.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024167 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: depth, type, ts, qc
Sensor: pressure | fields: ts, type, depth, lat
Task: Fetch level from snow_depth where depth is greater than the minimum of reading in pressure for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024168 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: qc, ts, lon, depth
Sensor: snow_depth | fields: depth, value, qc, lat
Task: Fetch lat from sunlight that have at least one corresponding snow_depth measurement for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024169 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: value, depth, lon, type
Sensor: temperature | fields: type, depth, ts, level
Task: Get value from snow_depth where ts appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="qc",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024170 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: unit, lon, reading, level
Sensor: cloud_cover | fields: level, reading, lat, qc
Task: Get value from turbidity where a corresponding entry exists in cloud_cover with the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024171 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: value, type, lon, unit
Sensor: frost | fields: lon, depth, unit, value
Task: Fetch level from cloud_cover where depth exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024172 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: qc, reading, depth, type
Sensor: wind_speed | fields: reading, level, ts, unit
Task: Fetch level from pressure where depth exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024173 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: lat, depth, ts, reading
Sensor: humidity | fields: unit, level, reading, ts
Task: Get lat from frost where ts appears in humidity readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024174 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: value, qc, unit, level
Sensor: frost | fields: type, depth, level, lon
Task: Get reading from evaporation where qc appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024175 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: reading, ts, type, depth
Sensor: uv_index | fields: ts, type, lat, unit
Task: Fetch level from turbidity where ts exists in uv_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024176 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: reading, type, level, value
Sensor: snow_depth | fields: qc, level, lon, unit
Task: Get lon from drought_index where type appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024177 | train |
v1 | Sensor network script:
Node: turbidity | code: clr | fields: ts, type, lat, reading
Sensor: soil_moisture | fields: qc, type, lon, unit
Task: Fetch lat from turbidity where depth exists in soil_moisture sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024178 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: qc, unit, type, level
Sensor: frost | fields: unit, qc, type, value
Task: Get depth from humidity where ts appears in frost readings with matching ts.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024179 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: value, unit, lon, qc
Sensor: cloud_cover | fields: lat, value, level, reading
Task: Retrieve value from temperature whose ts is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024180 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, ts, depth, value
Sensor: temperature | fields: depth, lon, unit, qc
Task: Get value from cloud_cover where type appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024181 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: value, lat, reading, depth
Sensor: air_quality | fields: lat, qc, value, type
Task: Retrieve depth from dew_point whose depth is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024182 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: value, depth, lat, ts
Sensor: frost | fields: value, type, lon, level
Task: Retrieve reading from cloud_cover that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024183 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: lon, unit, type, lat
Sensor: drought_index | fields: level, lat, reading, ts
Task: Fetch value from sunlight that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024184 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: type, unit, depth, value
Sensor: sunlight | fields: reading, unit, qc, lon
Task: Retrieve lat from wind_speed with depth above the MAX(depth) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024185 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: reading, unit, depth, qc
Sensor: turbidity | fields: type, value, ts, qc
Task: Retrieve value from snow_depth that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024186 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: level, reading, depth, ts
Sensor: lightning | fields: reading, unit, depth, ts
Task: Retrieve reading from sunlight that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024187 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: level, depth, type, ts
Sensor: evaporation | fields: type, value, qc, ts
Task: Fetch depth from dew_point where depth is greater than the count of of value in evaporation for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024188 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: ts, lat, depth, level
Sensor: pressure | fields: level, lon, depth, ts
Task: Fetch value from frost that have at least one corresponding pressure measurement for the same type.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024189 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: level, lon, reading, unit
Sensor: wind_speed | fields: depth, ts, level, unit
Task: Retrieve depth from lightning with reading above the AVG(depth) of wind_speed readings sharing the same qc.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024190 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: depth, qc, value, lon
Sensor: air_quality | fields: lat, ts, value, level
Task: Retrieve level from lightning whose unit is found in air_quality records where type matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="type",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024191 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: qc, depth, type, value
Sensor: air_quality | fields: lat, type, reading, lon
Task: Fetch value from dew_point where ts exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="type",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024192 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: lon, value, reading, depth
Sensor: evaporation | fields: level, depth, unit, lat
Task: Retrieve lat from snow_depth that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024193 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: value, type, reading, depth
Sensor: temperature | fields: lon, reading, unit, ts
Task: Get reading from air_quality where depth exceeds the count of depth from temperature for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="type"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024194 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: unit, ts, reading, qc
Sensor: uv_index | fields: ts, lat, type, lon
Task: Fetch depth from cloud_cover that have at least one corresponding uv_index measurement for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024195 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: reading, unit, lon, qc
Sensor: temperature | fields: lon, ts, level, type
Task: Fetch value from wind_speed where value is greater than the count of of depth in temperature for matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_024196 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: lat, level, type, lon
Sensor: evaporation | fields: lat, value, ts, level
Task: Retrieve lon from wind_speed whose ts is found in evaporation records where type matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024197 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: type, value, unit, lon
Sensor: lightning | fields: ts, unit, value, depth
Task: Fetch lat from dew_point that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024198 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: ts, value, type, lat
Sensor: dew_point | fields: lon, type, lat, unit
Task: Fetch lon from visibility where depth is greater than the minimum of depth in dew_point for matching unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_024199 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.