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: drought_index | code: mst | fields: value, lon, ts, level
Sensor: visibility | fields: value, level, ts, type
Task: Retrieve value from drought_index that have at least one matching reading in visibility sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025600 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: reading, type, ts, qc
Sensor: humidity | fields: type, unit, qc, reading
Task: Get level from evaporation where value exceeds the minimum reading from humidity for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025601 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: ts, depth, unit, level
Sensor: snow_depth | fields: ts, reading, depth, value
Task: Get depth from cloud_cover where depth appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025602 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: type, unit, ts, level
Sensor: snow_depth | fields: qc, type, lat, unit
Task: Get value from temperature where type appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025603 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: qc, value, lat, lon
Sensor: frost | fields: level, lon, qc, lat
Task: Retrieve reading from dew_point that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025604 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: value, lat, reading, type
Sensor: rainfall | fields: lon, level, unit, value
Task: Fetch depth from evaporation that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025605 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: type, lat, level, qc
Sensor: sunlight | fields: value, qc, reading, depth
Task: Fetch depth from wind_speed where depth is greater than the minimum of depth in sunlight for matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025606 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: reading, qc, type, level
Sensor: soil_moisture | fields: depth, lat, ts, type
Task: Fetch value from pressure that have at least one corresponding soil_moisture measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025607 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: value, ts, qc, reading
Sensor: temperature | fields: reading, level, value, unit
Task: Fetch lon from cloud_cover that have at least one corresponding temperature measurement for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025608 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: value, level, lon, type
Sensor: snow_depth | fields: depth, ts, reading, level
Task: Fetch lon from frost where qc exists in snow_depth sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025609 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: value, lon, unit, reading
Sensor: snow_depth | fields: lon, value, lat, type
Task: Get lat from drought_index where depth appears in snow_depth readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025610 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: level, type, lon, unit
Sensor: pressure | fields: reading, value, unit, type
Task: Get level from evaporation where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025611 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: unit, depth, ts, level
Sensor: air_quality | fields: depth, unit, ts, reading
Task: Fetch value from frost where reading is greater than the maximum of reading in air_quality for matching unit.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025612 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: level, qc, unit, lat
Sensor: sunlight | fields: reading, level, depth, unit
Task: Fetch reading from air_quality where depth is greater than the maximum of depth in sunlight for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"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_025613 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: lon, reading, ts, depth
Sensor: air_quality | fields: type, qc, lon, reading
Task: Get lat from humidity where a corresponding entry exists in air_quality with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025614 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: value, type, level, lat
Sensor: sunlight | fields: type, depth, lat, reading
Task: Retrieve reading from evaporation that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025615 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: type, unit, ts, value
Sensor: humidity | fields: depth, value, lat, unit
Task: Get lat from evaporation where qc appears in humidity readings with matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025616 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: level, reading, ts, lon
Sensor: cloud_cover | fields: depth, level, lat, lon
Task: Retrieve lat from air_quality that have at least one matching reading in cloud_cover sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025617 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: lat, ts, qc, depth
Sensor: rainfall | fields: type, lat, depth, unit
Task: Retrieve lon from drought_index with value above the MAX(reading) of rainfall readings sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025618 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: ts, value, qc, depth
Sensor: cloud_cover | fields: ts, value, level, lat
Task: Retrieve lat from air_quality with reading above the MIN(depth) of cloud_cover readings sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025619 | train |
v3 | Sensor network script:
Node: lightning | code: stn | fields: type, level, ts, lat
Sensor: turbidity | fields: ts, level, lon, type
Task: Fetch level from lightning where depth is greater than the minimum of reading in turbidity for matching qc.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025620 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: type, level, lat, unit
Sensor: frost | fields: qc, lon, reading, unit
Task: Retrieve level from wind_speed with value above the MIN(reading) of frost readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="unit"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025621 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: lon, type, reading, qc
Sensor: dew_point | fields: value, level, lat, ts
Task: Retrieve depth from snow_depth that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025622 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: depth, unit, level, type
Sensor: wind_speed | fields: lon, ts, value, reading
Task: Retrieve level from humidity with reading above the MIN(depth) of wind_speed readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025623 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: type, level, lat, depth
Sensor: rainfall | fields: level, lon, value, qc
Task: Fetch reading from dew_point where depth is greater than the total of depth in rainfall for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025624 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: ts, value, reading, depth
Sensor: snow_depth | fields: depth, unit, ts, type
Task: Retrieve value from sunlight with depth above the MAX(reading) of snow_depth readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025625 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: lat, ts, lon, value
Sensor: sunlight | fields: reading, ts, lon, qc
Task: Get level from pressure where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025626 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: lon, ts, lat, level
Sensor: air_quality | fields: reading, value, lat, unit
Task: Get depth from lightning where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025627 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: value, reading, type, level
Sensor: dew_point | fields: qc, type, ts, value
Task: Fetch level from turbidity that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025628 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: unit, lat, level, reading
Sensor: sunlight | fields: type, value, ts, lon
Task: Fetch reading from drought_index that have at least one corresponding sunlight measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025629 | train |
v3 | Sensor network script:
Node: lightning | code: stn | fields: reading, type, level, lat
Sensor: temperature | fields: type, value, ts, level
Task: Retrieve lon from lightning with value above the COUNT(depth) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="type"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025630 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: ts, lon, reading, type
Sensor: humidity | fields: level, type, value, qc
Task: Fetch depth from wind_speed that have at least one corresponding humidity measurement for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025631 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: value, lat, lon, type
Sensor: evaporation | fields: type, level, unit, reading
Task: Fetch reading from temperature where reading is greater than the total of depth in evaporation for matching type.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025632 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: type, lat, level, value
Sensor: drought_index | fields: type, lat, ts, unit
Task: Get value from uv_index where depth exceeds the maximum value from drought_index for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025633 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: depth, lat, unit, qc
Sensor: turbidity | fields: type, value, unit, qc
Task: Fetch lon from pressure where ts exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025634 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: level, type, qc, reading
Sensor: snow_depth | fields: lon, unit, ts, type
Task: Get reading from humidity where depth exceeds the average reading from snow_depth for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025635 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: type, reading, lat, ts
Sensor: humidity | fields: reading, unit, type, level
Task: Get level from dew_point where value exceeds the total value from humidity for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025636 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: lat, level, unit, lon
Sensor: temperature | fields: level, reading, ts, qc
Task: Get lon from cloud_cover where reading exceeds the count of reading from temperature for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025637 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: type, unit, depth, lat
Sensor: lightning | fields: ts, reading, lat, unit
Task: Get level from rainfall where ts appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025638 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: ts, value, type, depth
Sensor: sunlight | fields: level, value, ts, lon
Task: Fetch depth from rainfall where type exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025639 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: lat, lon, value, qc
Sensor: rainfall | fields: lon, type, ts, depth
Task: Fetch lon from cloud_cover where depth exists in rainfall sensor data for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025640 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: depth, unit, lat, qc
Sensor: snow_depth | fields: type, qc, ts, reading
Task: Fetch lon from uv_index that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025641 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: type, lat, depth, level
Sensor: evaporation | fields: depth, type, lon, value
Task: Retrieve reading from cloud_cover with depth above the MAX(reading) of evaporation readings sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025642 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: depth, lon, type, value
Sensor: rainfall | fields: type, lat, lon, depth
Task: Fetch reading from temperature that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025643 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: unit, type, ts, value
Sensor: drought_index | fields: unit, qc, type, lon
Task: Retrieve depth from evaporation that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025644 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: lon, depth, lat, value
Sensor: frost | fields: reading, depth, unit, ts
Task: Retrieve lon from air_quality that have at least one matching reading in frost sharing the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025645 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: level, qc, value, reading
Sensor: dew_point | fields: reading, qc, value, type
Task: Get level from lightning where a corresponding entry exists in dew_point with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025646 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: ts, unit, reading, value
Sensor: snow_depth | fields: depth, lon, value, qc
Task: Fetch reading from sunlight where depth is greater than the count of of value in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025647 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: ts, unit, reading, type
Sensor: soil_moisture | fields: unit, lon, level, ts
Task: Retrieve lon from lightning with depth above the COUNT(value) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025648 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: unit, lon, reading, type
Sensor: air_quality | fields: qc, ts, reading, level
Task: Get level from temperature where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025649 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: level, value, lat, reading
Sensor: sunlight | fields: lon, ts, lat, level
Task: Get depth from frost where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025650 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: reading, ts, unit, depth
Sensor: snow_depth | fields: lon, level, depth, ts
Task: Fetch lat from cloud_cover where unit exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025651 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: unit, qc, value, reading
Sensor: drought_index | fields: lat, ts, lon, qc
Task: Retrieve depth from uv_index that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025652 | train |
v2 | Sensor network script:
Node: uv_index | code: gst | fields: lat, ts, depth, lon
Sensor: snow_depth | fields: level, lat, ts, qc
Task: Get lat from uv_index where a corresponding entry exists in snow_depth with the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025653 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: lat, unit, reading, level
Sensor: uv_index | fields: type, ts, lon, qc
Task: Fetch level from frost where type exists in uv_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025654 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: depth, ts, type, level
Sensor: evaporation | fields: type, value, lat, unit
Task: Get level from soil_moisture where a corresponding entry exists in evaporation with the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025655 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: type, lon, ts, lat
Sensor: drought_index | fields: qc, ts, value, lon
Task: Fetch lat from sunlight where ts exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025656 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: lon, unit, lat, level
Sensor: frost | fields: qc, type, ts, unit
Task: Retrieve value from cloud_cover whose ts is found in frost records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025657 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: value, level, reading, qc
Sensor: soil_moisture | fields: reading, level, unit, lon
Task: Fetch depth from lightning that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025658 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: lon, ts, depth, value
Sensor: humidity | fields: type, lon, lat, value
Task: Fetch lat from turbidity where depth exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025659 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: type, lat, qc, unit
Sensor: frost | fields: type, reading, value, depth
Task: Get lat from cloud_cover where reading exceeds the maximum value from frost for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("frost", code="frs"),
match="qc"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025660 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: qc, reading, value, type
Sensor: dew_point | fields: lat, ts, unit, depth
Task: Retrieve reading from humidity that have at least one matching reading in dew_point sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025661 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: ts, lon, unit, level
Sensor: visibility | fields: lat, value, type, lon
Task: Retrieve value from soil_moisture whose type is found in visibility records where depth matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025662 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: reading, type, value, lat
Sensor: cloud_cover | fields: reading, level, type, depth
Task: Get value from air_quality where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025663 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: depth, reading, unit, qc
Sensor: soil_moisture | fields: lon, qc, level, unit
Task: Fetch value from sunlight that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025664 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: level, reading, depth, lat
Sensor: cloud_cover | fields: lon, level, value, reading
Task: Get value from rainfall where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025665 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: unit, ts, lat, qc
Sensor: evaporation | fields: depth, ts, qc, type
Task: Fetch value from temperature that have at least one corresponding evaporation measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025666 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: reading, depth, lat, ts
Sensor: cloud_cover | fields: lon, qc, ts, type
Task: Fetch level from soil_moisture that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025667 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: ts, lon, depth, value
Sensor: cloud_cover | fields: type, qc, lon, reading
Task: Retrieve reading from frost with depth above the MAX(reading) of cloud_cover readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025668 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: value, lat, type, reading
Sensor: pressure | fields: value, unit, ts, type
Task: Retrieve level from dew_point whose depth is found in pressure records where type matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025669 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: ts, lon, reading, level
Sensor: rainfall | fields: value, qc, reading, level
Task: Retrieve level from sunlight whose depth is found in rainfall records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="depth",
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": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025670 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: type, level, ts, value
Sensor: cloud_cover | fields: lat, ts, reading, value
Task: Fetch lat from frost where depth is greater than the average of reading in cloud_cover for matching ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025671 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: qc, ts, value, type
Sensor: visibility | fields: lon, qc, lat, level
Task: Get level from turbidity where reading exceeds the count of value from visibility for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025672 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: lon, qc, reading, value
Sensor: temperature | fields: unit, ts, reading, lon
Task: Get lat from rainfall where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025673 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: ts, reading, lat, type
Sensor: sunlight | fields: lat, type, depth, level
Task: Fetch lat from snow_depth that have at least one corresponding sunlight measurement for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025674 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: reading, depth, type, level
Sensor: soil_moisture | fields: level, reading, lon, depth
Task: Retrieve level from uv_index with depth above the MIN(reading) of soil_moisture readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025675 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: unit, level, ts, lat
Sensor: snow_depth | fields: level, ts, value, depth
Task: Retrieve reading from visibility with reading above the SUM(value) of snow_depth readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025676 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: value, lon, unit, qc
Sensor: visibility | fields: value, ts, reading, type
Task: Fetch depth from humidity that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025677 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: depth, ts, value, unit
Sensor: temperature | fields: type, ts, reading, level
Task: Get value from soil_moisture where depth appears in temperature readings with matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="depth",
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": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025678 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: level, type, reading, unit
Sensor: drought_index | fields: lon, ts, lat, unit
Task: Retrieve reading from wind_speed that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025679 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: qc, level, ts, lon
Sensor: wind_speed | fields: reading, level, unit, type
Task: Fetch level from soil_moisture that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025680 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: qc, depth, unit, reading
Sensor: rainfall | fields: unit, lat, depth, qc
Task: Retrieve value from wind_speed with depth above the COUNT(reading) of rainfall readings sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025681 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: ts, lat, level, qc
Sensor: rainfall | fields: level, depth, reading, value
Task: Retrieve reading from humidity with depth above the MIN(value) of rainfall readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025682 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: depth, lon, level, unit
Sensor: uv_index | fields: ts, type, depth, unit
Task: Retrieve level from temperature whose qc is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025683 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: lon, depth, unit, reading
Sensor: wind_speed | fields: ts, unit, level, type
Task: Retrieve level from turbidity whose qc is found in wind_speed records where depth matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025684 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: ts, lon, type, value
Sensor: soil_moisture | fields: type, lat, qc, unit
Task: Get depth from dew_point where type appears in soil_moisture readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025685 | train |
v2 | Sensor network script:
Node: uv_index | code: mst | fields: level, depth, unit, lat
Sensor: lightning | fields: ts, depth, lon, reading
Task: Fetch level from uv_index that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"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_025686 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: ts, unit, qc, level
Sensor: visibility | fields: value, depth, lat, lon
Task: Fetch value from humidity that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025687 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: lon, ts, level, value
Sensor: sunlight | fields: level, unit, lon, qc
Task: Retrieve reading from air_quality that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025688 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: lat, reading, qc, type
Sensor: turbidity | fields: qc, value, lon, ts
Task: Fetch reading from evaporation that have at least one corresponding turbidity measurement for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025689 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: lon, type, lat, qc
Sensor: uv_index | fields: reading, qc, lon, unit
Task: Get lon from visibility where a corresponding entry exists in uv_index with the same ts.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025690 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: lon, level, reading, ts
Sensor: sunlight | fields: lon, unit, level, qc
Task: Fetch value from soil_moisture where type exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025691 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: unit, lon, type, qc
Sensor: frost | fields: type, ts, qc, value
Task: Fetch depth from rainfall that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"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_025692 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: unit, reading, level, lon
Sensor: sunlight | fields: depth, lon, level, ts
Task: Retrieve level from cloud_cover that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025693 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: unit, level, ts, lon
Sensor: uv_index | fields: ts, value, unit, qc
Task: Fetch depth from drought_index that have at least one corresponding uv_index measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025694 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: value, type, qc, lat
Sensor: soil_moisture | fields: level, lat, ts, unit
Task: Get level from sunlight where depth appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025695 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: reading, value, unit, ts
Sensor: cloud_cover | fields: unit, lat, level, qc
Task: Fetch reading from sunlight that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025696 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: value, lon, lat, reading
Sensor: drought_index | fields: depth, reading, value, ts
Task: Get depth from dew_point where value exceeds the count of depth from drought_index for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025697 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: qc, lat, level, type
Sensor: air_quality | fields: lon, value, lat, ts
Task: Fetch lat from lightning that have at least one corresponding air_quality measurement for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025698 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: unit, value, reading, ts
Sensor: dew_point | fields: value, depth, type, unit
Task: Retrieve depth from rainfall whose type is found in dew_point records where unit matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025699 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.