variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: visibility | code: prt | fields: value, reading, depth, lon
Sensor: lightning | fields: unit, value, qc, ts
Task: Fetch value from visibility where depth exists in lightning sensor data for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078400 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: value, lat, lon, level
Sensor: humidity | fields: depth, value, ts, unit
Task: Fetch depth from air_quality where depth is greater than the minimum of depth in humidity for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078401 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: qc, level, ts, lon
Sensor: humidity | fields: level, value, unit, lon
Task: Fetch value from rainfall where value is greater than the average of depth in humidity for matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078402 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: ts, reading, type, depth
Sensor: lightning | fields: level, qc, depth, type
Task: Get depth from air_quality where type appears in lightning readings with matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078403 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: ts, type, unit, value
Sensor: humidity | fields: reading, unit, qc, ts
Task: Fetch lat from wind_speed where depth is greater than the maximum of depth in humidity for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"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_078404 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: value, unit, lon, level
Sensor: cloud_cover | fields: qc, lon, unit, type
Task: Get level from rainfall where unit appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078405 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: unit, ts, lon, reading
Sensor: temperature | fields: unit, lon, ts, value
Task: Fetch value from pressure that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078406 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: qc, ts, unit, lon
Sensor: snow_depth | fields: value, lon, reading, qc
Task: Get lat from wind_speed where type appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078407 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: lat, qc, type, depth
Sensor: frost | fields: depth, lat, qc, reading
Task: Fetch depth from soil_moisture that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078408 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: value, reading, ts, level
Sensor: pressure | fields: level, depth, value, lon
Task: Fetch lon from rainfall that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078409 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: lon, lat, type, level
Sensor: visibility | fields: lat, ts, level, depth
Task: Retrieve reading from lightning whose unit is found in visibility records where depth matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078410 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: value, level, type, lat
Sensor: cloud_cover | fields: depth, lon, value, unit
Task: Fetch depth from temperature that have at least one corresponding cloud_cover measurement for the same type.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078411 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: lat, lon, level, unit
Sensor: temperature | fields: lat, depth, ts, level
Task: Fetch value from frost that have at least one corresponding temperature measurement for the same unit.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078412 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: level, qc, unit, ts
Sensor: pressure | fields: level, type, lat, depth
Task: Fetch lat from cloud_cover where type exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078413 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: lat, value, lon, depth
Sensor: rainfall | fields: lon, level, qc, type
Task: Retrieve lat from snow_depth whose depth is found in rainfall records where unit matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078414 | train |
v3 | Sensor network script:
Node: lightning | code: ref | fields: lat, ts, type, level
Sensor: soil_moisture | fields: level, unit, lat, lon
Task: Retrieve value from lightning with value above the MAX(depth) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078415 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: level, type, lon, unit
Sensor: wind_speed | fields: type, ts, lon, depth
Task: Fetch reading from rainfall that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078416 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: value, reading, ts, type
Sensor: visibility | fields: unit, type, qc, depth
Task: Retrieve reading from snow_depth whose type is found in visibility records where unit matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078417 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: lon, unit, reading, level
Sensor: air_quality | fields: reading, ts, depth, type
Task: Get depth from soil_moisture where a corresponding entry exists in air_quality with the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078418 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: qc, unit, depth, reading
Sensor: drought_index | fields: reading, type, lon, value
Task: Fetch lat from turbidity where value is greater than the total of reading in drought_index for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lat",
"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_078419 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: qc, level, reading, ts
Sensor: evaporation | fields: reading, unit, type, lon
Task: Retrieve depth from frost that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078420 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: reading, ts, type, unit
Sensor: humidity | fields: depth, reading, lat, qc
Task: Retrieve lat from lightning that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078421 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: type, qc, reading, lon
Sensor: soil_moisture | fields: type, reading, unit, value
Task: Get lat from air_quality where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078422 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: lon, reading, ts, level
Sensor: wind_speed | fields: reading, unit, type, qc
Task: Retrieve lon from dew_point whose unit is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078423 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: lon, unit, depth, lat
Sensor: frost | fields: unit, type, level, reading
Task: Fetch lon from pressure that have at least one corresponding frost measurement for the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078424 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: lat, depth, unit, level
Sensor: rainfall | fields: value, level, type, depth
Task: Fetch depth from humidity where depth exists in rainfall sensor data for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078425 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: lon, depth, level, unit
Sensor: turbidity | fields: level, lon, lat, ts
Task: Fetch lat from visibility that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078426 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: depth, unit, qc, type
Sensor: cloud_cover | fields: lat, type, value, lon
Task: Get level from wind_speed where value exceeds the total depth from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078427 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: lat, level, qc, lon
Sensor: rainfall | fields: ts, type, qc, value
Task: Fetch lon from cloud_cover where depth is greater than the total of depth in rainfall for matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078428 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: qc, ts, type, lon
Sensor: pressure | fields: lat, level, value, type
Task: Get value from evaporation where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078429 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: lat, level, reading, type
Sensor: temperature | fields: value, ts, unit, qc
Task: Retrieve value from soil_moisture with value above the AVG(reading) of temperature readings sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078430 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: ts, value, type, depth
Sensor: drought_index | fields: lon, qc, ts, depth
Task: Retrieve lon from soil_moisture that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078431 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: value, level, lat, ts
Sensor: cloud_cover | fields: unit, lon, depth, lat
Task: Get reading from rainfall where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078432 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: lat, unit, level, lon
Sensor: pressure | fields: reading, unit, lat, ts
Task: Retrieve lon from visibility with reading above the SUM(value) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078433 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: ts, level, depth, unit
Sensor: humidity | fields: type, lon, depth, unit
Task: Get lat from visibility where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078434 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: reading, type, value, qc
Sensor: cloud_cover | fields: qc, lon, value, type
Task: Get lon from drought_index where reading exceeds the count of reading from cloud_cover for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078435 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: type, depth, value, qc
Sensor: evaporation | fields: lon, level, depth, reading
Task: Get level from rainfall where unit appears in evaporation readings with matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078436 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: depth, qc, type, ts
Sensor: dew_point | fields: lat, level, ts, qc
Task: Fetch depth from sunlight where depth is greater than the total of reading in dew_point for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078437 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: level, depth, qc, lat
Sensor: dew_point | fields: type, ts, level, reading
Task: Retrieve value from turbidity that have at least one matching reading in dew_point sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078438 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: lon, ts, reading, lat
Sensor: visibility | fields: reading, value, lon, lat
Task: Fetch lon from humidity where depth exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078439 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: type, qc, level, reading
Sensor: air_quality | fields: type, reading, value, qc
Task: Retrieve lat from temperature that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078440 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: unit, level, depth, lat
Sensor: drought_index | fields: lat, value, ts, lon
Task: Get value from temperature where type appears in drought_index readings with matching qc.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078441 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: level, depth, lat, ts
Sensor: cloud_cover | fields: qc, unit, depth, lat
Task: Fetch depth from sunlight where qc exists in cloud_cover sensor data for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078442 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: unit, depth, level, lon
Sensor: frost | fields: value, lat, qc, type
Task: Fetch reading from lightning where depth exists in frost sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078443 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: qc, value, level, unit
Sensor: sunlight | fields: value, type, lon, level
Task: Get level from humidity where a corresponding entry exists in sunlight with the same type.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078444 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: ts, type, lat, value
Sensor: air_quality | fields: type, value, depth, reading
Task: Retrieve reading from pressure whose unit is found in air_quality records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078445 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: depth, lon, level, type
Sensor: soil_moisture | fields: lat, ts, level, unit
Task: Get depth from frost where value exceeds the maximum reading from soil_moisture for the same ts.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078446 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: type, lon, reading, ts
Sensor: soil_moisture | fields: level, value, type, ts
Task: Get value from frost where reading exceeds the minimum value from soil_moisture for the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078447 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: type, depth, lat, lon
Sensor: uv_index | fields: type, qc, ts, level
Task: Fetch lon from turbidity where reading is greater than the minimum of depth in uv_index for matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078448 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: reading, qc, lat, lon
Sensor: lightning | fields: lat, qc, lon, level
Task: Retrieve lon from drought_index with reading above the SUM(reading) of lightning readings sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078449 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: reading, qc, value, lat
Sensor: humidity | fields: lat, unit, level, reading
Task: Get lat from evaporation where a corresponding entry exists in humidity with the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078450 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, qc, value, lat
Sensor: drought_index | fields: reading, ts, value, type
Task: Get level from snow_depth where qc appears in drought_index readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078451 | train |
v1 | Sensor network script:
Node: frost | code: stn | fields: level, unit, depth, lon
Sensor: dew_point | fields: reading, lon, lat, level
Task: Fetch lat from frost where qc exists in dew_point sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078452 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: lon, qc, ts, depth
Sensor: turbidity | fields: reading, lon, unit, level
Task: Fetch reading from uv_index that have at least one corresponding turbidity measurement for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078453 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: depth, level, lon, unit
Sensor: humidity | fields: ts, depth, qc, value
Task: Retrieve depth from temperature that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078454 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: level, reading, unit, value
Sensor: lightning | fields: level, lat, value, ts
Task: Retrieve level from cloud_cover that have at least one matching reading in lightning sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078455 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: qc, lat, type, value
Sensor: snow_depth | fields: value, reading, level, lat
Task: Get lon from dew_point where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078456 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: type, lon, ts, level
Sensor: visibility | fields: reading, lon, ts, depth
Task: Fetch depth from turbidity where value is greater than the count of of value in visibility for matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078457 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: qc, unit, reading, value
Sensor: visibility | fields: level, type, value, qc
Task: Fetch reading from frost that have at least one corresponding visibility measurement for the same ts.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078458 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: ts, value, type, lat
Sensor: frost | fields: lon, value, lat, type
Task: Retrieve level from snow_depth whose depth is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078459 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: reading, lat, qc, level
Sensor: turbidity | fields: depth, unit, reading, level
Task: Retrieve lon from drought_index that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078460 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: level, reading, type, unit
Sensor: dew_point | fields: lon, value, depth, reading
Task: Fetch reading from visibility where qc exists in dew_point sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078461 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: qc, level, type, lon
Sensor: air_quality | fields: type, lat, level, depth
Task: Retrieve lon from temperature that have at least one matching reading in air_quality sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078462 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: reading, lat, unit, ts
Sensor: sunlight | fields: level, type, lon, reading
Task: Get depth from turbidity where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078463 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: level, depth, lat, lon
Sensor: dew_point | fields: lon, depth, type, unit
Task: Get reading from snow_depth where ts appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078464 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: ts, qc, lon, level
Sensor: lightning | fields: qc, reading, depth, unit
Task: Retrieve level from soil_moisture that have at least one matching reading in lightning sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078465 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: lat, ts, level, reading
Sensor: wind_speed | fields: level, qc, type, lon
Task: Get reading from air_quality where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078466 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: level, type, unit, ts
Sensor: drought_index | fields: unit, level, qc, depth
Task: Retrieve lat from turbidity whose type is found in drought_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078467 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: depth, reading, unit, qc
Sensor: snow_depth | fields: lat, lon, value, level
Task: Retrieve lat from temperature whose qc is found in snow_depth records where qc matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078468 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: qc, lat, type, lon
Sensor: air_quality | fields: lat, depth, reading, qc
Task: Get level from evaporation where type appears in air_quality readings with matching type.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078469 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: unit, reading, value, qc
Sensor: cloud_cover | fields: level, lat, unit, lon
Task: Get lat from pressure where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "pressure",
"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_078470 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: level, value, lon, unit
Sensor: visibility | fields: unit, value, reading, qc
Task: Get reading from snow_depth where value exceeds the count of reading from visibility for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078471 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: level, reading, depth, ts
Sensor: rainfall | fields: depth, unit, ts, type
Task: Fetch depth from turbidity where unit exists in rainfall sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078472 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: qc, lat, value, ts
Sensor: dew_point | fields: level, qc, value, unit
Task: Retrieve lat from soil_moisture whose unit is found in dew_point records where type matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078473 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: lat, unit, depth, ts
Sensor: pressure | fields: reading, value, depth, lon
Task: Fetch lon from dew_point where type exists in pressure sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078474 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: ts, value, lon, lat
Sensor: frost | fields: ts, unit, type, lat
Task: Retrieve depth from snow_depth whose depth is found in frost records where depth matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078475 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: level, lat, lon, type
Sensor: soil_moisture | fields: depth, lon, level, reading
Task: Fetch reading from rainfall where unit exists in soil_moisture sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078476 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: lat, value, qc, level
Sensor: turbidity | fields: lon, lat, unit, ts
Task: Get lon from rainfall where unit appears in turbidity readings with matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078477 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: value, unit, lon, qc
Sensor: uv_index | fields: type, value, level, lon
Task: Get lat from turbidity where type appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078478 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: value, lon, ts, level
Sensor: drought_index | fields: level, value, reading, lon
Task: Fetch lat from lightning where unit exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078479 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: type, ts, lon, lat
Sensor: drought_index | fields: lat, depth, value, reading
Task: Get value from temperature where depth exceeds the maximum value from drought_index for the same type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078480 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: lon, level, type, unit
Sensor: frost | fields: ts, lon, value, level
Task: Get depth from dew_point where a corresponding entry exists in frost with the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078481 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: level, lat, unit, ts
Sensor: dew_point | fields: unit, lat, lon, value
Task: Fetch reading from pressure where type exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078482 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: reading, unit, value, lon
Sensor: wind_speed | fields: depth, value, unit, reading
Task: Fetch depth from sunlight that have at least one corresponding wind_speed measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078483 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: reading, ts, depth, level
Sensor: rainfall | fields: depth, value, lon, unit
Task: Retrieve reading from uv_index whose qc is found in rainfall records where qc matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078484 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: lat, lon, unit, value
Sensor: soil_moisture | fields: ts, lon, reading, unit
Task: Get depth from turbidity where unit appears in soil_moisture readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078485 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: value, unit, lon, reading
Sensor: uv_index | fields: depth, value, level, reading
Task: Get lat from rainfall where unit appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078486 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: type, lon, qc, reading
Sensor: cloud_cover | fields: level, depth, lat, reading
Task: Fetch level from turbidity where ts exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078487 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: value, lon, lat, type
Sensor: rainfall | fields: qc, level, lat, unit
Task: Get value from soil_moisture where depth appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078488 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: lon, ts, value, unit
Sensor: lightning | fields: depth, reading, type, value
Task: Get level from pressure where reading exceeds the count of depth from lightning for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078489 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: lon, reading, type, lat
Sensor: lightning | fields: lat, unit, type, depth
Task: Fetch depth from cloud_cover where ts exists in lightning sensor data for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078490 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: lon, level, unit, ts
Sensor: turbidity | fields: reading, ts, type, depth
Task: Retrieve depth from cloud_cover that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078491 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: level, lon, depth, value
Sensor: wind_speed | fields: reading, value, lon, ts
Task: Retrieve reading from evaporation whose unit is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078492 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: level, lat, type, value
Sensor: uv_index | fields: ts, depth, reading, level
Task: Get lon from frost where value exceeds the count of reading from uv_index for the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078493 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: reading, value, qc, type
Sensor: pressure | fields: reading, type, lat, depth
Task: Retrieve reading from air_quality that have at least one matching reading in pressure sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078494 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: unit, lon, qc, depth
Sensor: wind_speed | fields: lat, lon, type, level
Task: Retrieve value from pressure that have at least one matching reading in wind_speed sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078495 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: value, ts, depth, lon
Sensor: evaporation | fields: level, ts, unit, value
Task: Fetch value from pressure where value is greater than the average of depth in evaporation for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078496 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: level, depth, type, qc
Sensor: turbidity | fields: reading, value, lat, depth
Task: Retrieve lon from visibility that have at least one matching reading in turbidity sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078497 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: depth, unit, lat, reading
Sensor: soil_moisture | fields: reading, value, lat, level
Task: Get lon from snow_depth where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078498 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: lat, depth, type, unit
Sensor: visibility | fields: lat, depth, ts, qc
Task: Get value from pressure where a corresponding entry exists in visibility with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.