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: turbidity | code: ref | fields: value, reading, lon, lat
Sensor: dew_point | fields: lon, type, qc, ts
Task: Get value from turbidity where a corresponding entry exists in dew_point with the same type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078500 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: type, reading, unit, value
Sensor: frost | fields: lat, reading, unit, value
Task: Get value from uv_index where unit appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078501 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: lon, level, unit, value
Sensor: turbidity | fields: type, ts, qc, level
Task: Get value from evaporation where a corresponding entry exists in turbidity with the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078502 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: level, lon, reading, qc
Sensor: cloud_cover | fields: level, qc, type, ts
Task: Fetch depth from uv_index that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078503 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: qc, level, depth, ts
Sensor: wind_speed | fields: ts, level, value, depth
Task: Get level from drought_index where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
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",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078504 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: depth, ts, value, unit
Sensor: air_quality | fields: lon, ts, type, qc
Task: Get reading from snow_depth where ts appears in air_quality readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078505 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: value, level, type, lon
Sensor: evaporation | fields: ts, lon, qc, value
Task: Get lat from wind_speed where depth exceeds the minimum depth from evaporation for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078506 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: reading, depth, value, lon
Sensor: turbidity | fields: ts, level, lat, reading
Task: Get lon from uv_index where type appears in turbidity readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078507 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: qc, reading, depth, value
Sensor: wind_speed | fields: ts, reading, value, unit
Task: Get value from temperature where unit appears in wind_speed readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078508 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: ts, unit, lat, reading
Sensor: pressure | fields: level, ts, value, lon
Task: Get level from sunlight where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078509 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: ts, level, unit, depth
Sensor: drought_index | fields: depth, lat, type, level
Task: Get lon from temperature where depth exceeds the maximum value from drought_index for the same type.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078510 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: type, qc, lat, value
Sensor: turbidity | fields: lon, unit, qc, value
Task: Get value from sunlight where a corresponding entry exists in turbidity with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078511 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: ts, lat, qc, unit
Sensor: drought_index | fields: qc, value, depth, lat
Task: Get lon from sunlight where unit appears in drought_index readings with matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078512 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: level, ts, value, type
Sensor: snow_depth | fields: value, qc, depth, lon
Task: Get reading from rainfall where depth exceeds the maximum value from snow_depth for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078513 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: lat, qc, reading, depth
Sensor: rainfall | fields: depth, type, qc, ts
Task: Get level from sunlight where value exceeds the average value from rainfall for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078514 | train |
v2 | Sensor network script:
Node: temperature | code: stn | fields: qc, level, depth, unit
Sensor: snow_depth | fields: reading, type, level, ts
Task: Get reading from temperature where a corresponding entry exists in snow_depth with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078515 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, qc, lon, value
Sensor: cloud_cover | fields: lat, depth, type, lon
Task: Get reading from snow_depth where type appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078516 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: lon, lat, type, qc
Sensor: air_quality | fields: type, lon, qc, reading
Task: Fetch lat from drought_index where depth exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078517 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: level, unit, lat, depth
Sensor: soil_moisture | fields: reading, qc, lat, ts
Task: Retrieve value from frost whose unit is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078518 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: level, ts, qc, type
Sensor: lightning | fields: reading, unit, qc, type
Task: Retrieve lat from frost with reading above the SUM(reading) of lightning readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078519 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: lon, lat, type, unit
Sensor: dew_point | fields: lon, qc, value, level
Task: Fetch level from evaporation where unit exists in dew_point sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078520 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: unit, value, depth, qc
Sensor: lightning | fields: type, level, qc, reading
Task: Get reading from sunlight where value exceeds the count of reading from lightning for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078521 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: depth, reading, unit, level
Sensor: air_quality | fields: reading, depth, qc, value
Task: Retrieve depth from soil_moisture that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078522 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: depth, qc, type, level
Sensor: pressure | fields: lon, ts, depth, unit
Task: Get level from rainfall where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078523 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: lon, value, ts, lat
Sensor: turbidity | fields: reading, unit, value, lat
Task: Fetch reading from rainfall where depth is greater than the total of value in turbidity for matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078524 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: lat, level, type, qc
Sensor: turbidity | fields: ts, value, type, depth
Task: Get reading from evaporation where depth appears in turbidity readings with matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078525 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: ts, value, lat, level
Sensor: soil_moisture | fields: lon, type, unit, reading
Task: Get depth from lightning where depth exceeds the minimum value from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078526 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: lon, level, lat, ts
Sensor: drought_index | fields: level, qc, value, type
Task: Retrieve lat from soil_moisture whose unit is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078527 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: qc, reading, lon, ts
Sensor: evaporation | fields: depth, lat, reading, level
Task: Fetch value from cloud_cover where ts exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078528 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: qc, type, ts, value
Sensor: sunlight | fields: level, reading, ts, lat
Task: Get lon from temperature where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078529 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: depth, type, unit, qc
Sensor: visibility | fields: depth, qc, value, unit
Task: Fetch lon from snow_depth where reading is greater than the total of value in visibility for matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078530 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: reading, qc, value, unit
Sensor: rainfall | fields: lon, reading, level, type
Task: Fetch level from dew_point that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078531 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: type, lat, reading, lon
Sensor: cloud_cover | fields: lon, unit, lat, type
Task: Fetch value from soil_moisture where depth is greater than the maximum of value in cloud_cover for matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078532 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: lon, depth, reading, type
Sensor: frost | fields: lon, level, lat, reading
Task: Fetch value from humidity where depth is greater than the maximum of value in frost for matching ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078533 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: depth, ts, lat, level
Sensor: wind_speed | fields: level, lon, value, lat
Task: Fetch value from temperature where depth exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078534 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: depth, qc, ts, type
Sensor: air_quality | fields: lon, value, level, lat
Task: Get level from lightning where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078535 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: lat, level, value, ts
Sensor: rainfall | fields: reading, value, qc, ts
Task: Get lon from turbidity where type appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078536 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: type, lon, reading, depth
Sensor: drought_index | fields: value, qc, level, ts
Task: Get depth from dew_point where qc appears in drought_index readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078537 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: level, lat, lon, unit
Sensor: turbidity | fields: lat, unit, type, level
Task: Fetch depth from cloud_cover that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078538 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: reading, unit, value, lat
Sensor: lightning | fields: lon, level, value, depth
Task: Fetch lon from temperature that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078539 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: unit, depth, value, qc
Sensor: uv_index | fields: qc, type, unit, depth
Task: Retrieve lat from turbidity whose depth is found in uv_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078540 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: value, qc, type, reading
Sensor: lightning | fields: lon, lat, reading, level
Task: Fetch depth from pressure that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "pressure",
"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_078541 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: level, type, qc, depth
Sensor: turbidity | fields: ts, depth, reading, unit
Task: Get depth from cloud_cover where a corresponding entry exists in turbidity with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078542 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: qc, ts, depth, lon
Sensor: temperature | fields: depth, reading, qc, type
Task: Get level from cloud_cover where a corresponding entry exists in temperature with the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078543 | train |
v3 | Sensor network script:
Node: lightning | code: stn | fields: depth, value, lat, unit
Sensor: pressure | fields: depth, reading, value, qc
Task: Get lat from lightning where depth exceeds the maximum depth from pressure for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078544 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: type, reading, lat, ts
Sensor: soil_moisture | fields: lon, type, unit, level
Task: Get reading from lightning where type appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078545 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: lon, ts, type, qc
Sensor: soil_moisture | fields: ts, reading, unit, qc
Task: Get level from air_quality where type appears in soil_moisture readings with matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078546 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: lon, unit, qc, reading
Sensor: pressure | fields: depth, reading, value, ts
Task: Get lon from uv_index where a corresponding entry exists in pressure with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078547 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: ts, reading, lon, unit
Sensor: temperature | fields: qc, reading, ts, depth
Task: Fetch level from uv_index where ts exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078548 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: lon, type, value, unit
Sensor: pressure | fields: lat, value, level, lon
Task: Fetch lat from uv_index that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078549 | train |
v3 | Sensor network script:
Node: evaporation | code: hub | fields: ts, lon, level, lat
Sensor: visibility | fields: reading, qc, type, unit
Task: Fetch lon from evaporation where value is greater than the average of value in visibility for matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078550 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: level, ts, lon, lat
Sensor: uv_index | fields: unit, reading, qc, level
Task: Fetch reading from pressure that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078551 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: value, unit, lat, depth
Sensor: temperature | fields: reading, unit, lat, value
Task: Fetch value from cloud_cover that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078552 | train |
v3 | Sensor network script:
Node: visibility | code: gst | fields: lat, level, qc, ts
Sensor: drought_index | fields: unit, depth, type, reading
Task: Get level from visibility where reading exceeds the maximum value from drought_index for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078553 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: ts, lon, depth, reading
Sensor: sunlight | fields: reading, unit, level, lat
Task: Get depth from air_quality where depth exceeds the minimum reading from sunlight for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078554 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: type, level, lon, reading
Sensor: temperature | fields: lat, qc, depth, reading
Task: Get level from air_quality where value exceeds the total value from temperature for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078555 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: unit, ts, qc, type
Sensor: temperature | fields: lat, depth, ts, reading
Task: Fetch depth from cloud_cover where ts exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078556 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: value, lon, qc, type
Sensor: dew_point | fields: ts, value, lon, depth
Task: Get lat from temperature where unit appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078557 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: depth, lon, ts, reading
Sensor: frost | fields: qc, unit, lat, reading
Task: Fetch depth from sunlight that have at least one corresponding frost measurement for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078558 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: value, level, reading, ts
Sensor: frost | fields: qc, unit, value, depth
Task: Fetch reading from visibility where depth is greater than the minimum of depth in frost for matching depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078559 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: lat, unit, reading, ts
Sensor: evaporation | fields: level, lat, depth, qc
Task: Fetch value from cloud_cover where qc exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078560 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: unit, level, depth, qc
Sensor: sunlight | fields: value, unit, lat, level
Task: Get level from temperature where ts appears in sunlight readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078561 | train |
v2 | Sensor network script:
Node: visibility | code: prt | fields: lon, depth, unit, qc
Sensor: lightning | fields: type, depth, reading, unit
Task: Fetch value from visibility that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078562 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: value, level, type, ts
Sensor: evaporation | fields: level, lon, ts, lat
Task: Retrieve value from soil_moisture that have at least one matching reading in evaporation sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078563 | train |
v3 | Sensor network script:
Node: dew_point | code: stn | fields: level, reading, depth, value
Sensor: humidity | fields: level, reading, unit, qc
Task: Get value from dew_point where reading exceeds the total depth from humidity for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078564 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: lon, lat, reading, depth
Sensor: turbidity | fields: unit, qc, lat, depth
Task: Retrieve depth from rainfall with depth above the AVG(depth) of turbidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078565 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: lon, unit, type, qc
Sensor: lightning | fields: reading, ts, unit, depth
Task: Fetch value from dew_point where reading is greater than the minimum of reading in lightning for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078566 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: unit, lon, depth, qc
Sensor: soil_moisture | fields: level, qc, value, type
Task: Get lat from temperature where depth exceeds the count of reading from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078567 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: type, value, ts, level
Sensor: cloud_cover | fields: lat, type, reading, level
Task: Retrieve value from visibility whose type is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078568 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: reading, lon, qc, ts
Sensor: frost | fields: qc, type, unit, lat
Task: Fetch reading from dew_point where ts exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078569 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: value, ts, level, depth
Sensor: turbidity | fields: qc, value, reading, lon
Task: Get reading from visibility where depth appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078570 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: type, ts, unit, level
Sensor: evaporation | fields: level, lon, type, unit
Task: Retrieve level from cloud_cover that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078571 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: unit, ts, reading, type
Sensor: cloud_cover | fields: depth, lon, type, unit
Task: Fetch lat from dew_point where ts exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078572 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: lat, level, qc, reading
Sensor: lightning | fields: value, unit, lat, reading
Task: Get lon from soil_moisture where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078573 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: level, lon, ts, type
Sensor: pressure | fields: lon, value, reading, ts
Task: Retrieve lon from drought_index with reading above the SUM(value) of pressure readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078574 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: depth, qc, type, lon
Sensor: turbidity | fields: reading, qc, type, ts
Task: Get level from wind_speed where value exceeds the total reading from turbidity for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078575 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: reading, qc, value, type
Sensor: frost | fields: lon, lat, qc, depth
Task: Retrieve value from snow_depth that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078576 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: reading, type, unit, ts
Sensor: turbidity | fields: level, ts, lon, depth
Task: Retrieve lon from visibility whose unit is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078577 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: level, lon, type, reading
Sensor: rainfall | fields: type, ts, lat, level
Task: Get level from soil_moisture where a corresponding entry exists in rainfall with the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078578 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: type, reading, level, lat
Sensor: cloud_cover | fields: unit, lat, level, value
Task: Fetch depth from soil_moisture that have at least one corresponding cloud_cover measurement for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078579 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: level, unit, value, lon
Sensor: uv_index | fields: value, reading, qc, ts
Task: Retrieve lat from soil_moisture whose qc is found in uv_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078580 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: unit, qc, lon, ts
Sensor: dew_point | fields: depth, type, value, lat
Task: Retrieve value from visibility whose unit is found in dew_point records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078581 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: type, qc, level, reading
Sensor: lightning | fields: level, lon, lat, type
Task: Retrieve value from temperature that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078582 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: lon, unit, type, value
Sensor: humidity | fields: type, reading, unit, value
Task: Get value from wind_speed where ts appears in humidity readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078583 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: value, level, lon, type
Sensor: rainfall | fields: value, ts, lon, type
Task: Fetch reading from drought_index where depth is greater than the minimum of depth in rainfall for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078584 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: unit, ts, depth, lon
Sensor: air_quality | fields: type, unit, ts, lon
Task: Fetch depth from pressure where depth is greater than the maximum of value in air_quality for matching qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078585 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: qc, unit, reading, depth
Sensor: dew_point | fields: value, ts, depth, qc
Task: Retrieve reading from pressure with value above the MIN(depth) of dew_point readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078586 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: value, lat, reading, level
Sensor: frost | fields: lat, level, unit, qc
Task: Retrieve value from cloud_cover with value above the MAX(value) of frost readings sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="qc"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078587 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: qc, type, level, value
Sensor: evaporation | fields: lon, qc, ts, reading
Task: Get reading from visibility where unit appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="type",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078588 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: ts, unit, qc, depth
Sensor: drought_index | fields: unit, ts, reading, depth
Task: Retrieve reading from dew_point whose depth is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078589 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: ts, depth, level, qc
Sensor: air_quality | fields: lat, type, qc, lon
Task: Fetch reading from wind_speed where reading is greater than the count of of value in air_quality for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078590 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: value, level, lon, ts
Sensor: dew_point | fields: type, depth, unit, reading
Task: Fetch depth from air_quality that have at least one corresponding dew_point measurement for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078591 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: depth, lon, value, lat
Sensor: lightning | fields: value, qc, type, depth
Task: Fetch lon from air_quality that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078592 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: ts, value, unit, depth
Sensor: lightning | fields: unit, value, level, reading
Task: Get reading from sunlight where a corresponding entry exists in lightning with the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078593 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: reading, lon, value, qc
Sensor: humidity | fields: reading, unit, lon, qc
Task: Retrieve value from drought_index whose type is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078594 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: level, type, reading, qc
Sensor: lightning | fields: ts, qc, lat, type
Task: Fetch depth from pressure where value is greater than the count of of value in lightning for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078595 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: type, unit, lon, value
Sensor: soil_moisture | fields: ts, unit, value, depth
Task: Fetch value from cloud_cover where depth is greater than the maximum of reading in soil_moisture for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078596 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: reading, ts, lat, value
Sensor: uv_index | fields: lon, level, qc, lat
Task: Retrieve lat from turbidity with depth above the MIN(depth) of uv_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078597 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: lon, depth, qc, value
Sensor: humidity | fields: qc, reading, lon, level
Task: Fetch value from air_quality that have at least one corresponding humidity measurement for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078598 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: depth, reading, value, ts
Sensor: humidity | fields: type, depth, reading, level
Task: Fetch value from cloud_cover where type exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078599 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.