variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: turbidity | code: ref | fields: lat, type, value, unit
Sensor: air_quality | fields: type, lon, lat, value
Task: Get value from turbidity where value exceeds the total depth from air_quality for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002400 | train |
v1 | Sensor network script:
Node: dew_point | code: mst | fields: lon, level, qc, ts
Sensor: lightning | fields: lon, depth, reading, qc
Task: Fetch value from dew_point where ts exists in lightning sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002401 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: type, qc, lat, ts
Sensor: frost | fields: reading, lon, unit, qc
Task: Get lon from uv_index where a corresponding entry exists in frost with the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002402 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: qc, reading, lat, type
Sensor: soil_moisture | fields: value, type, unit, lon
Task: Fetch lat from pressure where value is greater than the average of value in soil_moisture for matching unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002403 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: level, lon, ts, unit
Sensor: humidity | fields: depth, type, lon, value
Task: Get reading from uv_index where value exceeds the count of value from humidity for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002404 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: depth, unit, reading, type
Sensor: temperature | fields: lat, type, unit, lon
Task: Get lon from rainfall where qc appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002405 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: qc, ts, type, level
Sensor: soil_moisture | fields: value, lat, qc, ts
Task: Retrieve value from dew_point that have at least one matching reading in soil_moisture sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002406 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: ts, depth, lat, type
Sensor: turbidity | fields: level, unit, depth, lon
Task: Get level from rainfall where a corresponding entry exists in turbidity with the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002407 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: level, unit, ts, type
Sensor: wind_speed | fields: lon, unit, level, reading
Task: Fetch reading from snow_depth where value is greater than the minimum of reading in wind_speed for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002408 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: unit, lon, type, qc
Sensor: soil_moisture | fields: type, depth, value, ts
Task: Retrieve depth from rainfall that have at least one matching reading in soil_moisture sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002409 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: value, qc, depth, unit
Sensor: humidity | fields: value, lon, level, type
Task: Retrieve lon from sunlight that have at least one matching reading in humidity sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002410 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: unit, type, value, ts
Sensor: temperature | fields: reading, unit, lon, type
Task: Retrieve depth from pressure with value above the AVG(depth) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002411 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: value, reading, lon, level
Sensor: dew_point | fields: lat, type, unit, value
Task: Get level from rainfall where unit appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002412 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: unit, type, reading, lat
Sensor: turbidity | fields: qc, level, lat, lon
Task: Retrieve reading from sunlight with value above the AVG(depth) of turbidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002413 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: ts, qc, type, value
Sensor: snow_depth | fields: lat, level, lon, reading
Task: Get value from evaporation where a corresponding entry exists in snow_depth with the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002414 | train |
v3 | Sensor network script:
Node: visibility | code: ref | fields: reading, lat, unit, ts
Sensor: snow_depth | fields: value, reading, type, unit
Task: Fetch lon from visibility where reading is greater than the count of of depth in snow_depth for matching depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002415 | train |
v3 | Sensor network script:
Node: humidity | code: clr | fields: reading, lat, type, lon
Sensor: evaporation | fields: lon, type, reading, depth
Task: Retrieve depth from humidity with depth above the SUM(reading) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002416 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: type, level, depth, qc
Sensor: evaporation | fields: value, ts, lon, lat
Task: Get depth from visibility where unit appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002417 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: type, unit, lon, depth
Sensor: sunlight | fields: reading, lon, unit, value
Task: Retrieve value from turbidity with reading above the SUM(reading) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002418 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: value, ts, unit, lon
Sensor: soil_moisture | fields: lon, depth, type, qc
Task: Get lon from rainfall where a corresponding entry exists in soil_moisture with the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002419 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: ts, unit, value, level
Sensor: air_quality | fields: qc, type, ts, depth
Task: Get reading from uv_index where a corresponding entry exists in air_quality with the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002420 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: depth, level, type, ts
Sensor: air_quality | fields: unit, ts, qc, type
Task: Get reading from evaporation where value exceeds the total value from air_quality for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002421 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: depth, ts, unit, lon
Sensor: cloud_cover | fields: type, ts, depth, qc
Task: Retrieve lat from rainfall whose qc is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002422 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: unit, value, reading, type
Sensor: uv_index | fields: reading, ts, level, lat
Task: Get depth from soil_moisture where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002423 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: ts, qc, level, type
Sensor: wind_speed | fields: level, value, lat, unit
Task: Get lon from humidity where ts appears in wind_speed readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002424 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: type, ts, lat, unit
Sensor: wind_speed | fields: unit, lon, lat, value
Task: Fetch reading from rainfall where depth exists in wind_speed sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002425 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: unit, level, value, lon
Sensor: cloud_cover | fields: qc, depth, unit, level
Task: Retrieve level from uv_index with depth above the AVG(depth) of cloud_cover readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002426 | train |
v1 | Sensor network script:
Node: wind_speed | code: stn | fields: depth, ts, qc, lon
Sensor: temperature | fields: type, lon, depth, lat
Task: Fetch depth from wind_speed where ts exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002427 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: lat, unit, level, reading
Sensor: humidity | fields: unit, ts, reading, level
Task: Fetch lon from sunlight where depth exists in humidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002428 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: reading, value, ts, lat
Sensor: dew_point | fields: type, unit, qc, value
Task: Fetch level from pressure that have at least one corresponding dew_point measurement for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002429 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: lat, ts, depth, reading
Sensor: soil_moisture | fields: unit, lon, level, reading
Task: Get value from dew_point where reading exceeds the minimum depth from soil_moisture for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002430 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: qc, ts, lat, value
Sensor: turbidity | fields: value, reading, depth, type
Task: Get lat from rainfall where type appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002431 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: ts, unit, lon, reading
Sensor: cloud_cover | fields: qc, ts, depth, level
Task: Fetch lat from uv_index where reading is greater than the minimum of value in cloud_cover for matching depth.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002432 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: level, reading, value, lon
Sensor: lightning | fields: level, ts, lon, depth
Task: Fetch value from turbidity that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002433 | train |
v3 | Sensor network script:
Node: humidity | code: gst | fields: ts, lat, depth, level
Sensor: visibility | fields: unit, depth, reading, qc
Task: Retrieve value from humidity with reading above the AVG(value) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002434 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: value, reading, depth, unit
Sensor: snow_depth | fields: value, level, lat, reading
Task: Get reading from air_quality where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002435 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: ts, lat, value, lon
Sensor: soil_moisture | fields: level, unit, lon, value
Task: Fetch depth from dew_point that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002436 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: type, lat, reading, depth
Sensor: evaporation | fields: reading, lat, type, value
Task: Get level from dew_point where ts appears in evaporation readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002437 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: level, lon, qc, depth
Sensor: visibility | fields: ts, reading, lon, qc
Task: Get reading from turbidity where reading exceeds the maximum depth from visibility for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002438 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: type, qc, unit, depth
Sensor: soil_moisture | fields: type, reading, value, unit
Task: Retrieve reading from sunlight whose qc is found in soil_moisture records where unit matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002439 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: lat, qc, level, unit
Sensor: humidity | fields: reading, value, lat, level
Task: Fetch reading from frost where type exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002440 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: depth, lon, reading, qc
Sensor: turbidity | fields: qc, unit, reading, depth
Task: Retrieve depth from lightning that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002441 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: unit, level, value, ts
Sensor: wind_speed | fields: value, level, ts, lat
Task: Retrieve level from drought_index with reading above the COUNT(depth) of wind_speed readings sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002442 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: value, type, reading, lat
Sensor: snow_depth | fields: depth, lon, ts, type
Task: Retrieve lat from turbidity with reading above the COUNT(value) of snow_depth readings sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002443 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: lat, ts, reading, qc
Sensor: snow_depth | fields: level, ts, qc, reading
Task: Get lat from evaporation where reading exceeds the average reading from snow_depth for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002444 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: lat, level, depth, ts
Sensor: evaporation | fields: lon, reading, unit, level
Task: Get reading from uv_index where reading exceeds the total value from evaporation for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002445 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: reading, level, depth, lat
Sensor: evaporation | fields: type, lon, level, lat
Task: Get value from rainfall where reading exceeds the total reading from evaporation for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002446 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: reading, type, unit, depth
Sensor: drought_index | fields: lon, unit, lat, reading
Task: Fetch reading from visibility where depth is greater than the maximum of value in drought_index for matching unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002447 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: reading, unit, ts, value
Sensor: air_quality | fields: value, lon, lat, depth
Task: Get lon from drought_index where depth appears in air_quality readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002448 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: lat, type, value, reading
Sensor: air_quality | fields: ts, level, lon, qc
Task: Retrieve lat from rainfall that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002449 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: qc, value, type, ts
Sensor: sunlight | fields: lat, value, type, reading
Task: Fetch level from lightning that have at least one corresponding sunlight measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002450 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: level, lat, ts, type
Sensor: snow_depth | fields: lat, type, reading, value
Task: Fetch lat from wind_speed where reading is greater than the maximum of reading in snow_depth for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002451 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: lon, depth, reading, lat
Sensor: snow_depth | fields: level, lon, ts, unit
Task: Retrieve level from air_quality with reading above the COUNT(depth) of snow_depth readings sharing the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002452 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: lon, lat, type, ts
Sensor: air_quality | fields: unit, lon, value, type
Task: Retrieve level from pressure that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002453 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: level, type, lat, lon
Sensor: visibility | fields: level, type, depth, value
Task: Get depth from uv_index where a corresponding entry exists in visibility with the same type.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002454 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: depth, level, value, ts
Sensor: temperature | fields: lat, reading, value, qc
Task: Get reading from cloud_cover where a corresponding entry exists in temperature with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002455 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: value, lon, reading, type
Sensor: wind_speed | fields: lat, level, value, unit
Task: Retrieve level from sunlight with depth above the COUNT(depth) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002456 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: ts, depth, value, lon
Sensor: cloud_cover | fields: reading, qc, depth, lon
Task: Retrieve depth from evaporation that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002457 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: qc, level, lon, ts
Sensor: drought_index | fields: depth, ts, qc, unit
Task: Retrieve lon from uv_index that have at least one matching reading in drought_index sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002458 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: lon, reading, qc, depth
Sensor: dew_point | fields: unit, lon, qc, value
Task: Fetch depth from snow_depth where depth is greater than the maximum of depth in dew_point for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "depth",
"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_002459 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: ts, reading, depth, lat
Sensor: lightning | fields: reading, value, ts, lat
Task: Get depth from temperature where reading exceeds the total reading from lightning for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002460 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: unit, value, ts, level
Sensor: uv_index | fields: ts, value, reading, type
Task: Fetch lat from air_quality that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002461 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: value, depth, qc, level
Sensor: pressure | fields: lat, unit, ts, reading
Task: Get lat from temperature where depth appears in pressure readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002462 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: ts, depth, reading, value
Sensor: sunlight | fields: level, reading, ts, qc
Task: Fetch lon from humidity where ts exists in sunlight sensor data for the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002463 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: depth, unit, reading, value
Sensor: visibility | fields: qc, unit, value, reading
Task: Retrieve lat from evaporation that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002464 | train |
v2 | Sensor network script:
Node: uv_index | code: gst | fields: reading, qc, type, unit
Sensor: lightning | fields: unit, depth, ts, reading
Task: Retrieve level from uv_index that have at least one matching reading in lightning sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002465 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: reading, lat, unit, level
Sensor: wind_speed | fields: unit, type, lat, level
Task: Fetch lat from cloud_cover where depth is greater than the maximum of value in wind_speed for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002466 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: lat, level, type, lon
Sensor: temperature | fields: lon, qc, value, type
Task: Fetch level from cloud_cover that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002467 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: reading, depth, level, lat
Sensor: dew_point | fields: reading, ts, level, type
Task: Fetch value from turbidity that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002468 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: lat, qc, type, lon
Sensor: turbidity | fields: reading, depth, type, qc
Task: Retrieve lon from visibility that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002469 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: ts, type, reading, qc
Sensor: cloud_cover | fields: level, lon, unit, ts
Task: Fetch reading from visibility where ts exists in cloud_cover sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002470 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: type, depth, unit, level
Sensor: temperature | fields: reading, level, qc, lat
Task: Retrieve lat from turbidity that have at least one matching reading in temperature sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002471 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: reading, lon, value, qc
Sensor: pressure | fields: unit, reading, lat, type
Task: Fetch lat from lightning that have at least one corresponding pressure measurement for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002472 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: lat, reading, qc, type
Sensor: rainfall | fields: level, reading, qc, lat
Task: Fetch lat from humidity where type exists in rainfall sensor data for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002473 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: lat, reading, unit, lon
Sensor: snow_depth | fields: type, lat, qc, level
Task: Get lat from rainfall where reading exceeds the minimum value from snow_depth for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002474 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: reading, depth, lon, value
Sensor: air_quality | fields: unit, reading, level, ts
Task: Retrieve reading from sunlight that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002475 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: reading, level, depth, ts
Sensor: dew_point | fields: depth, value, unit, qc
Task: Fetch level from air_quality where qc exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002476 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: reading, lon, value, lat
Sensor: humidity | fields: reading, level, unit, depth
Task: Fetch value from rainfall that have at least one corresponding humidity measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002477 | train |
v3 | Sensor network script:
Node: temperature | code: thr | fields: depth, level, lon, reading
Sensor: snow_depth | fields: level, type, value, unit
Task: Fetch depth from temperature where reading is greater than the count of of depth in snow_depth for matching depth.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002478 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: value, unit, type, ts
Sensor: drought_index | fields: unit, ts, reading, qc
Task: Retrieve level from turbidity that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002479 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: lat, reading, type, value
Sensor: lightning | fields: qc, reading, level, lat
Task: Retrieve lon from sunlight with reading above the AVG(value) of lightning readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002480 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: lat, lon, qc, level
Sensor: uv_index | fields: level, lon, ts, unit
Task: Retrieve value from wind_speed with reading above the AVG(depth) of uv_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002481 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: level, lon, value, ts
Sensor: lightning | fields: qc, reading, type, lat
Task: Get depth from snow_depth where a corresponding entry exists in lightning with the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002482 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: depth, level, lat, lon
Sensor: frost | fields: value, lon, type, reading
Task: Retrieve lon from evaporation that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002483 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: level, reading, qc, lon
Sensor: wind_speed | fields: type, depth, value, unit
Task: Fetch lat from humidity that have at least one corresponding wind_speed measurement for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002484 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: depth, qc, type, value
Sensor: uv_index | fields: depth, ts, value, type
Task: Retrieve lon from wind_speed with depth above the MAX(value) of uv_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002485 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: qc, type, depth, reading
Sensor: cloud_cover | fields: value, qc, level, unit
Task: Fetch depth from soil_moisture that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002486 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: reading, lat, value, level
Sensor: drought_index | fields: type, depth, lat, reading
Task: Retrieve level from air_quality whose type is found in drought_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002487 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: level, ts, qc, lat
Sensor: rainfall | fields: unit, type, lat, reading
Task: Get value from dew_point where ts appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002488 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: reading, lat, qc, unit
Sensor: uv_index | fields: value, ts, level, reading
Task: Retrieve depth from drought_index whose ts is found in uv_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002489 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: unit, lon, lat, value
Sensor: drought_index | fields: type, ts, value, reading
Task: Fetch lat from air_quality that have at least one corresponding drought_index measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002490 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: type, lat, value, qc
Sensor: wind_speed | fields: reading, value, lat, ts
Task: Retrieve depth from temperature whose depth is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002491 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: qc, lat, ts, type
Sensor: frost | fields: level, reading, ts, qc
Task: Fetch lat from cloud_cover where reading is greater than the maximum of value in frost for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="type"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002492 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: lon, qc, type, depth
Sensor: evaporation | fields: value, type, depth, lat
Task: Get value from pressure where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002493 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: level, lat, value, depth
Sensor: rainfall | fields: lon, value, reading, depth
Task: Get value from temperature where ts appears in rainfall readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002494 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: lon, ts, depth, lat
Sensor: frost | fields: type, depth, level, ts
Task: Retrieve lat from uv_index with reading above the MAX(value) of frost readings sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="unit"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002495 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: type, lat, value, lon
Sensor: temperature | fields: depth, lat, level, type
Task: Get lon from uv_index where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002496 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: value, ts, depth, lat
Sensor: visibility | fields: reading, lat, ts, type
Task: Fetch reading from sunlight that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002497 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: value, qc, unit, lat
Sensor: visibility | fields: ts, lon, value, level
Task: Get reading from evaporation where unit appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002498 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: reading, ts, qc, unit
Sensor: soil_moisture | fields: reading, value, depth, lat
Task: Fetch level from pressure that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.