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: cloud_cover | code: clr | fields: type, lon, depth, level
Sensor: pressure | fields: reading, type, qc, level
Task: Retrieve level from cloud_cover that have at least one matching reading in pressure sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062300 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: value, lon, lat, level
Sensor: air_quality | fields: lon, lat, type, value
Task: Retrieve lat from temperature that have at least one matching reading in air_quality sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062301 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: lat, type, lon, level
Sensor: rainfall | fields: ts, value, reading, lat
Task: Fetch depth from visibility where value is greater than the count of of value in rainfall for matching qc.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062302 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: ts, lat, type, unit
Sensor: cloud_cover | fields: level, type, qc, value
Task: Retrieve value from wind_speed with value above the SUM(reading) of cloud_cover readings sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062303 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: qc, lon, unit, lat
Sensor: visibility | fields: depth, type, qc, lat
Task: Retrieve reading from cloud_cover that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062304 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: unit, value, type, lat
Sensor: pressure | fields: qc, lon, reading, value
Task: Get reading from cloud_cover where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062305 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: value, reading, qc, type
Sensor: pressure | fields: type, reading, qc, value
Task: Fetch depth from frost where reading is greater than the maximum of value in pressure for matching ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062306 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: reading, ts, lon, qc
Sensor: pressure | fields: depth, qc, type, unit
Task: Get level from cloud_cover where qc appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062307 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: value, unit, reading, depth
Sensor: turbidity | fields: value, qc, unit, lat
Task: Retrieve lon from snow_depth whose type is found in turbidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062308 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: qc, level, lon, reading
Sensor: rainfall | fields: value, reading, lat, depth
Task: Retrieve level from sunlight with reading above the MIN(reading) of rainfall readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062309 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: depth, lon, value, qc
Sensor: air_quality | fields: reading, type, lat, ts
Task: Fetch lon from snow_depth where type exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062310 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: lat, lon, level, value
Sensor: pressure | fields: lon, qc, depth, unit
Task: Retrieve value from cloud_cover that have at least one matching reading in pressure sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062311 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: lat, value, level, unit
Sensor: visibility | fields: value, unit, level, reading
Task: Get depth from pressure where depth appears in visibility readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062312 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: lon, reading, value, ts
Sensor: snow_depth | fields: lat, value, reading, lon
Task: Fetch level from uv_index that have at least one corresponding snow_depth measurement for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062313 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: depth, type, unit, level
Sensor: pressure | fields: level, depth, lat, type
Task: Get lon from sunlight where value exceeds the minimum depth from pressure for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062314 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: type, unit, depth, ts
Sensor: dew_point | fields: depth, ts, qc, level
Task: Get level from uv_index where type appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062315 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: type, lon, reading, value
Sensor: temperature | fields: qc, ts, reading, unit
Task: Fetch depth from turbidity that have at least one corresponding temperature measurement for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062316 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: reading, ts, qc, level
Sensor: uv_index | fields: lon, ts, depth, lat
Task: Retrieve level from air_quality with value above the MIN(depth) of uv_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062317 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: lat, level, value, type
Sensor: rainfall | fields: depth, value, unit, reading
Task: Get lon from turbidity where depth appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062318 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: lon, qc, reading, level
Sensor: soil_moisture | fields: lon, unit, value, ts
Task: Retrieve lon from wind_speed with reading above the AVG(reading) of soil_moisture readings sharing the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062319 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: depth, lat, lon, unit
Sensor: dew_point | fields: lon, lat, reading, type
Task: Retrieve value from soil_moisture that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062320 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: type, level, qc, lat
Sensor: drought_index | fields: ts, reading, depth, qc
Task: Retrieve reading from sunlight whose depth is found in drought_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062321 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: reading, value, lat, lon
Sensor: temperature | fields: ts, unit, lon, lat
Task: Retrieve level from pressure with reading above the SUM(depth) of temperature readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062322 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: level, lat, type, qc
Sensor: dew_point | fields: level, depth, ts, qc
Task: Get value from temperature where value exceeds the total value from dew_point for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062323 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: level, type, lat, ts
Sensor: soil_moisture | fields: reading, type, depth, unit
Task: Retrieve lat from rainfall that have at least one matching reading in soil_moisture sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062324 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: reading, qc, lat, level
Sensor: drought_index | fields: type, unit, level, qc
Task: Get reading from cloud_cover where depth appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062325 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: level, ts, unit, depth
Sensor: lightning | fields: ts, level, value, qc
Task: Fetch lon from frost that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062326 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: lat, depth, reading, level
Sensor: frost | fields: unit, type, level, value
Task: Fetch level from cloud_cover that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062327 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: qc, lon, value, depth
Sensor: drought_index | fields: value, lon, reading, ts
Task: Retrieve lat from pressure whose qc is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062328 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: depth, value, type, qc
Sensor: cloud_cover | fields: reading, lon, type, unit
Task: Get depth from air_quality where a corresponding entry exists in cloud_cover with the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062329 | train |
v3 | Sensor network script:
Node: visibility | code: ref | fields: reading, ts, value, depth
Sensor: temperature | fields: type, depth, lon, ts
Task: Retrieve reading from visibility with depth above the COUNT(value) of temperature readings sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062330 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: lat, value, reading, level
Sensor: uv_index | fields: depth, lat, type, lon
Task: Get level from dew_point where qc appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062331 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: lon, lat, unit, type
Sensor: evaporation | fields: lon, level, lat, value
Task: Get value from snow_depth where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062332 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: reading, unit, qc, depth
Sensor: frost | fields: qc, depth, unit, level
Task: Retrieve lat from sunlight with depth above the MAX(reading) of frost readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("frost", code="frs"),
match="unit"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062333 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: qc, reading, lat, level
Sensor: dew_point | fields: qc, ts, type, unit
Task: Get value from uv_index where type appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062334 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: lon, reading, ts, qc
Sensor: humidity | fields: lat, type, value, ts
Task: Fetch level from snow_depth where value is greater than the count of of value in humidity for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062335 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: type, lat, ts, level
Sensor: sunlight | fields: ts, depth, reading, unit
Task: Get reading from drought_index where value exceeds the average reading from sunlight for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062336 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: depth, qc, reading, value
Sensor: cloud_cover | fields: unit, reading, depth, lon
Task: Get value from sunlight where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062337 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: unit, ts, qc, type
Sensor: rainfall | fields: lon, qc, unit, reading
Task: Fetch value from uv_index where depth is greater than the average of depth in rainfall for matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062338 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: qc, level, reading, lat
Sensor: cloud_cover | fields: lat, qc, reading, level
Task: Retrieve depth from humidity with depth above the MAX(reading) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062339 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: value, ts, level, unit
Sensor: visibility | fields: lon, reading, ts, value
Task: Get depth from cloud_cover where depth appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062340 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: type, value, unit, lon
Sensor: temperature | fields: level, type, qc, depth
Task: Get lat from dew_point where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062341 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: value, unit, lat, qc
Sensor: sunlight | fields: qc, type, value, level
Task: Fetch lat from drought_index where type exists in sunlight sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062342 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: lon, ts, level, qc
Sensor: snow_depth | fields: value, depth, unit, level
Task: Fetch value from cloud_cover that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"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_062343 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: depth, lon, level, unit
Sensor: sunlight | fields: lat, depth, ts, type
Task: Fetch value from snow_depth that have at least one corresponding sunlight measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062344 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: type, level, depth, qc
Sensor: wind_speed | fields: lat, type, level, reading
Task: Get depth from air_quality where reading exceeds the maximum reading from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062345 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: unit, reading, lon, qc
Sensor: temperature | fields: level, lon, lat, type
Task: Get lon from cloud_cover where a corresponding entry exists in temperature with the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062346 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: reading, lon, level, ts
Sensor: wind_speed | fields: value, qc, lat, reading
Task: Retrieve lat from uv_index whose type is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062347 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: depth, qc, value, lat
Sensor: uv_index | fields: type, reading, unit, lat
Task: Retrieve lat from air_quality that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062348 | train |
v3 | Sensor network script:
Node: snow_depth | code: clr | fields: qc, value, reading, type
Sensor: wind_speed | fields: value, depth, ts, level
Task: Fetch reading from snow_depth where reading is greater than the maximum of reading in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062349 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, value, type, lat
Sensor: snow_depth | fields: depth, type, lat, lon
Task: Retrieve level from wind_speed with depth above the SUM(depth) of snow_depth readings sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062350 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: reading, lat, qc, type
Sensor: lightning | fields: qc, value, lon, type
Task: Retrieve lon from humidity that have at least one matching reading in lightning sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062351 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: lat, value, type, reading
Sensor: dew_point | fields: lon, level, depth, value
Task: Get level from uv_index where ts appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062352 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: level, depth, value, type
Sensor: wind_speed | fields: lat, reading, level, lon
Task: Fetch reading from uv_index where qc exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062353 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: qc, ts, type, unit
Sensor: snow_depth | fields: value, ts, type, reading
Task: Fetch lon from cloud_cover where depth exists in snow_depth sensor data for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062354 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: reading, value, depth, lon
Sensor: evaporation | fields: value, ts, lon, reading
Task: Fetch value from rainfall where value is greater than the total of reading in evaporation for matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062355 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: depth, ts, type, value
Sensor: pressure | fields: value, depth, lon, level
Task: Get depth from uv_index where type appears in pressure readings with matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062356 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: lat, reading, type, unit
Sensor: soil_moisture | fields: depth, level, lat, lon
Task: Get value from pressure where ts appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062357 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: value, level, type, unit
Sensor: air_quality | fields: level, unit, type, lon
Task: Get lon from sunlight where a corresponding entry exists in air_quality with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062358 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: lon, qc, lat, depth
Sensor: turbidity | fields: qc, ts, value, lon
Task: Get lat from evaporation where depth exceeds the minimum depth from turbidity for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062359 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: qc, depth, lon, value
Sensor: visibility | fields: ts, reading, depth, unit
Task: Retrieve depth from frost that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062360 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: unit, value, level, reading
Sensor: soil_moisture | fields: type, qc, ts, unit
Task: Get lon from snow_depth where depth exceeds the minimum reading from soil_moisture for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062361 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: lon, reading, lat, level
Sensor: visibility | fields: unit, lat, qc, ts
Task: Get lat from humidity where a corresponding entry exists in visibility with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062362 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: ts, depth, value, type
Sensor: lightning | fields: lat, type, reading, unit
Task: Get depth from pressure where ts appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062363 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: depth, level, ts, lon
Sensor: air_quality | fields: lat, lon, reading, depth
Task: Retrieve lat from temperature whose depth is found in air_quality records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062364 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: lon, ts, qc, depth
Sensor: evaporation | fields: qc, lat, level, reading
Task: Retrieve depth from soil_moisture that have at least one matching reading in evaporation sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062365 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: qc, unit, depth, reading
Sensor: evaporation | fields: unit, level, depth, lon
Task: Fetch level from dew_point where qc exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="qc",
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": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062366 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: qc, value, type, lon
Sensor: sunlight | fields: unit, type, value, lat
Task: Fetch value from visibility where depth exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062367 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: depth, reading, level, lon
Sensor: lightning | fields: level, reading, value, lat
Task: Retrieve reading from air_quality whose qc is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062368 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: lon, depth, value, qc
Sensor: visibility | fields: lon, level, reading, unit
Task: Retrieve value from evaporation that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062369 | train |
v3 | Sensor network script:
Node: humidity | code: gst | fields: lat, type, qc, level
Sensor: cloud_cover | fields: qc, lon, reading, type
Task: Get lon from humidity where value exceeds the total depth from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062370 | train |
v3 | Sensor network script:
Node: snow_depth | code: prt | fields: value, reading, lon, qc
Sensor: visibility | fields: lon, lat, depth, value
Task: Get depth from snow_depth where value exceeds the maximum value from visibility for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062371 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: level, qc, lon, lat
Sensor: sunlight | fields: qc, ts, value, lat
Task: Get depth from wind_speed where a corresponding entry exists in sunlight with the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062372 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: ts, lon, reading, depth
Sensor: turbidity | fields: unit, lon, depth, level
Task: Retrieve reading from cloud_cover with depth above the MIN(depth) of turbidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062373 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: ts, level, lon, qc
Sensor: humidity | fields: type, ts, depth, lon
Task: Fetch lat from soil_moisture that have at least one corresponding humidity measurement for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062374 | train |
v3 | Sensor network script:
Node: lightning | code: ref | fields: lat, unit, type, qc
Sensor: uv_index | fields: lat, type, value, ts
Task: Fetch depth from lightning where depth is greater than the minimum of depth in uv_index for matching depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062375 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: ts, qc, unit, reading
Sensor: uv_index | fields: level, value, qc, depth
Task: Fetch level from pressure where type exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062376 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: value, lon, ts, lat
Sensor: cloud_cover | fields: lat, level, type, depth
Task: Get lat from air_quality where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062377 | train |
v3 | Sensor network script:
Node: dew_point | code: stn | fields: level, lon, reading, lat
Sensor: evaporation | fields: type, reading, level, lat
Task: Get level from dew_point where value exceeds the total value from evaporation for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062378 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: level, lon, unit, lat
Sensor: pressure | fields: depth, lon, lat, ts
Task: Fetch lon from rainfall where type exists in pressure sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062379 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: level, lon, ts, reading
Sensor: dew_point | fields: depth, reading, type, lon
Task: Retrieve lat from humidity whose ts is found in dew_point records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062380 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: value, level, unit, reading
Sensor: turbidity | fields: value, lat, qc, type
Task: Fetch level from cloud_cover where type exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062381 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: depth, ts, lon, qc
Sensor: pressure | fields: unit, value, ts, qc
Task: Fetch depth from evaporation that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062382 | train |
v2 | Sensor network script:
Node: wind_speed | code: ref | fields: level, depth, lat, qc
Sensor: rainfall | fields: ts, type, reading, qc
Task: Fetch lat from wind_speed that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062383 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: level, lon, unit, reading
Sensor: air_quality | fields: value, unit, lon, qc
Task: Retrieve lat from sunlight whose type is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062384 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: type, ts, reading, unit
Sensor: air_quality | fields: reading, value, lat, level
Task: Retrieve value from drought_index that have at least one matching reading in air_quality sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_062385 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: qc, ts, lon, lat
Sensor: snow_depth | fields: lat, ts, unit, qc
Task: Get lon from cloud_cover where a corresponding entry exists in snow_depth with the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062386 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: reading, lon, level, depth
Sensor: snow_depth | fields: reading, level, ts, qc
Task: Get depth from pressure where qc appears in snow_depth readings with matching qc.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062387 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: type, depth, lat, reading
Sensor: frost | fields: type, unit, ts, reading
Task: Get reading from lightning where qc appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062388 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: lon, reading, depth, ts
Sensor: snow_depth | fields: value, level, reading, type
Task: Retrieve lat from pressure with depth above the SUM(value) of snow_depth readings sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062389 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: reading, unit, lat, type
Sensor: lightning | fields: lon, level, reading, ts
Task: Retrieve value from evaporation whose unit is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062390 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: lon, lat, ts, unit
Sensor: uv_index | fields: level, lon, reading, value
Task: Fetch value from dew_point that have at least one corresponding uv_index measurement for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062391 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: lat, unit, reading, lon
Sensor: pressure | fields: reading, depth, lon, ts
Task: Fetch level from wind_speed where depth is greater than the total of reading in pressure for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062392 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: qc, unit, depth, reading
Sensor: soil_moisture | fields: level, lon, qc, ts
Task: Fetch reading from turbidity that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062393 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: reading, value, level, lat
Sensor: cloud_cover | fields: qc, lon, depth, value
Task: Retrieve value from humidity that have at least one matching reading in cloud_cover sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062394 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: ts, value, level, type
Sensor: dew_point | fields: value, lat, ts, qc
Task: Get lat from snow_depth where ts appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062395 | train |
v2 | Sensor network script:
Node: frost | code: gst | fields: type, value, level, qc
Sensor: uv_index | fields: lat, lon, level, unit
Task: Get lon from frost where a corresponding entry exists in uv_index with the same unit.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062396 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: reading, lon, lat, qc
Sensor: soil_moisture | fields: ts, unit, level, lon
Task: Retrieve reading from turbidity whose qc is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062397 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: lat, reading, level, lon
Sensor: lightning | fields: depth, unit, reading, qc
Task: Retrieve lat from soil_moisture whose depth is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062398 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: level, qc, value, ts
Sensor: frost | fields: value, qc, depth, unit
Task: Get reading from temperature where type appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_062399 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.