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: frost | code: mst | fields: qc, value, level, type
Sensor: sunlight | fields: type, qc, depth, value
Task: Retrieve lon from frost whose ts is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025200 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: ts, lon, lat, qc
Sensor: drought_index | fields: value, qc, ts, depth
Task: Fetch reading from temperature where type exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025201 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: depth, qc, lon, level
Sensor: visibility | fields: reading, value, depth, lon
Task: Get lat from turbidity where type appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025202 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: qc, unit, depth, level
Sensor: visibility | fields: depth, ts, lat, unit
Task: Fetch reading from dew_point where unit exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025203 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: unit, reading, ts, depth
Sensor: pressure | fields: value, level, reading, depth
Task: Fetch reading from humidity that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025204 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: lon, type, qc, level
Sensor: rainfall | fields: unit, value, lon, type
Task: Fetch value from frost that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025205 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: level, value, type, unit
Sensor: soil_moisture | fields: qc, lat, depth, ts
Task: Retrieve lat from turbidity whose unit is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025206 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: reading, level, lon, ts
Sensor: snow_depth | fields: ts, lon, unit, lat
Task: Fetch level from temperature where ts exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025207 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: level, reading, qc, unit
Sensor: dew_point | fields: level, lon, ts, unit
Task: Get depth from pressure where depth exceeds the maximum value from dew_point for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025208 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: type, depth, ts, unit
Sensor: visibility | fields: ts, depth, reading, lat
Task: Fetch lon from air_quality that have at least one corresponding visibility measurement for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025209 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: level, ts, reading, lat
Sensor: evaporation | fields: ts, reading, qc, lon
Task: Get depth from lightning where qc appears in evaporation readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025210 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: ts, lat, reading, type
Sensor: visibility | fields: unit, reading, type, lon
Task: Get lon from sunlight where a corresponding entry exists in visibility with the same type.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025211 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: ts, reading, depth, lon
Sensor: evaporation | fields: value, depth, ts, unit
Task: Get lat from air_quality where depth exceeds the maximum depth from evaporation for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025212 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: reading, lon, type, value
Sensor: drought_index | fields: value, reading, lon, lat
Task: Get lat from air_quality where value exceeds the maximum depth from drought_index for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025213 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: level, type, lon, value
Sensor: sunlight | fields: depth, lat, qc, unit
Task: Get lon from drought_index where unit appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025214 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: lat, value, depth, unit
Sensor: humidity | fields: value, depth, lat, lon
Task: Retrieve lon from turbidity with value above the SUM(depth) of humidity readings sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025215 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: ts, type, lat, unit
Sensor: wind_speed | fields: ts, type, qc, value
Task: Fetch lon from cloud_cover where value is greater than the total of depth in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025216 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: lat, reading, value, type
Sensor: wind_speed | fields: value, qc, lon, level
Task: Retrieve reading from uv_index whose qc is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025217 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: type, reading, value, unit
Sensor: visibility | fields: value, lon, unit, ts
Task: Retrieve lat from humidity whose ts is found in visibility records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025218 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: level, ts, reading, lon
Sensor: rainfall | fields: lon, unit, depth, level
Task: Fetch level from sunlight where value is greater than the total of depth in rainfall for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025219 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: value, lon, level, depth
Sensor: soil_moisture | fields: reading, lon, unit, depth
Task: Fetch reading from air_quality that have at least one corresponding soil_moisture measurement for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025220 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: lat, lon, depth, qc
Sensor: uv_index | fields: type, lat, reading, lon
Task: Get reading from snow_depth where depth appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025221 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: depth, level, type, qc
Sensor: sunlight | fields: lat, reading, unit, value
Task: Get value from lightning where reading exceeds the maximum value from sunlight for the same type.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025222 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: ts, type, reading, level
Sensor: uv_index | fields: depth, lat, type, level
Task: Fetch lon from evaporation where depth is greater than the average of reading in uv_index for matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025223 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: qc, ts, lat, depth
Sensor: evaporation | fields: value, ts, type, depth
Task: Fetch depth from lightning that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025224 | train |
v3 | Sensor network script:
Node: lightning | code: hub | fields: qc, value, level, type
Sensor: pressure | fields: value, depth, type, reading
Task: Retrieve depth from lightning with depth above the AVG(reading) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025225 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: value, lon, lat, type
Sensor: lightning | fields: level, depth, ts, type
Task: Fetch depth from dew_point where depth exists in lightning sensor data for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025226 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: lon, level, value, type
Sensor: uv_index | fields: qc, lat, level, value
Task: Fetch lon from humidity that have at least one corresponding uv_index measurement for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025227 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: lat, depth, type, lon
Sensor: soil_moisture | fields: qc, lat, value, reading
Task: Fetch level from wind_speed where depth exists in soil_moisture sensor data for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025228 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: reading, type, qc, lon
Sensor: temperature | fields: reading, level, lat, ts
Task: Retrieve lon from pressure that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025229 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: unit, ts, reading, lat
Sensor: lightning | fields: lon, level, ts, lat
Task: Fetch lat from cloud_cover where value is greater than the average of depth in lightning for matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025230 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, unit, reading, qc
Sensor: cloud_cover | fields: level, lat, depth, type
Task: Retrieve lat from soil_moisture that have at least one matching reading in cloud_cover sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025231 | train |
v3 | Sensor network script:
Node: lightning | code: stn | fields: ts, lon, unit, lat
Sensor: wind_speed | fields: type, lat, value, ts
Task: Fetch level from lightning where value is greater than the minimum of value in wind_speed for matching qc.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025232 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: reading, unit, lon, lat
Sensor: pressure | fields: lon, ts, value, depth
Task: Retrieve lat from snow_depth with depth above the COUNT(value) of pressure readings sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025233 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: lon, qc, value, level
Sensor: air_quality | fields: lon, level, reading, type
Task: Retrieve depth from uv_index with reading above the COUNT(depth) of air_quality readings sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025234 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: ts, lat, qc, reading
Sensor: rainfall | fields: lon, level, lat, ts
Task: Fetch value from lightning where type exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025235 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: reading, type, level, ts
Sensor: dew_point | fields: type, depth, lat, level
Task: Retrieve value from turbidity that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025236 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: lat, type, lon, reading
Sensor: pressure | fields: ts, lat, type, qc
Task: Retrieve reading from wind_speed with reading above the SUM(reading) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025237 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: depth, lat, type, unit
Sensor: rainfall | fields: lat, lon, depth, level
Task: Retrieve value from turbidity with depth above the COUNT(depth) of rainfall readings sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025238 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: lat, depth, ts, value
Sensor: snow_depth | fields: reading, lat, type, level
Task: Fetch level from temperature where depth is greater than the minimum of reading in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025239 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: level, ts, unit, type
Sensor: frost | fields: qc, level, ts, lat
Task: Get level from drought_index where depth appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025240 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: qc, depth, value, unit
Sensor: dew_point | fields: qc, reading, lat, type
Task: Get lat from temperature where a corresponding entry exists in dew_point with the same qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025241 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: value, unit, depth, ts
Sensor: wind_speed | fields: level, lat, ts, lon
Task: Get depth from temperature where unit appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025242 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: lon, depth, level, qc
Sensor: evaporation | fields: ts, qc, reading, lat
Task: Get lon from humidity where a corresponding entry exists in evaporation with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025243 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: lon, qc, lat, value
Sensor: wind_speed | fields: reading, qc, value, ts
Task: Fetch value from drought_index where depth is greater than the count of of reading in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025244 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: lat, unit, reading, lon
Sensor: dew_point | fields: lon, unit, reading, value
Task: Fetch lon from lightning where qc exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025245 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: qc, unit, reading, level
Sensor: turbidity | fields: lon, lat, type, level
Task: Fetch level from uv_index where qc exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025246 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: reading, ts, type, unit
Sensor: pressure | fields: level, reading, qc, unit
Task: Get level from snow_depth where value exceeds the count of depth from pressure for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025247 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: type, lon, unit, qc
Sensor: temperature | fields: type, lon, value, unit
Task: Get reading from drought_index where ts appears in temperature readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025248 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: qc, level, unit, depth
Sensor: humidity | fields: lon, unit, qc, reading
Task: Retrieve reading from sunlight that have at least one matching reading in humidity sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025249 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: qc, level, reading, lon
Sensor: cloud_cover | fields: lon, level, lat, unit
Task: Retrieve depth from humidity with depth above the SUM(value) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025250 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: depth, unit, type, lat
Sensor: pressure | fields: reading, ts, qc, type
Task: Get depth from humidity where a corresponding entry exists in pressure with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025251 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: type, reading, qc, lat
Sensor: cloud_cover | fields: type, value, lon, qc
Task: Get lat from rainfall where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025252 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: type, level, ts, unit
Sensor: sunlight | fields: ts, lon, reading, depth
Task: Retrieve depth from dew_point that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025253 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: type, qc, reading, lon
Sensor: wind_speed | fields: lat, lon, unit, type
Task: Get value from sunlight where value exceeds the minimum depth from wind_speed for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025254 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: unit, value, lat, level
Sensor: air_quality | fields: qc, type, reading, ts
Task: Retrieve depth from turbidity that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025255 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: lat, ts, unit, depth
Sensor: frost | fields: value, lat, type, level
Task: Get lon from uv_index where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025256 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: type, unit, lat, value
Sensor: rainfall | fields: type, qc, ts, unit
Task: Fetch reading from sunlight that have at least one corresponding rainfall measurement for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025257 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: qc, reading, depth, type
Sensor: wind_speed | fields: lat, unit, depth, lon
Task: Fetch lat from uv_index where depth is greater than the maximum of reading in wind_speed for matching type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025258 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: lon, depth, unit, level
Sensor: rainfall | fields: depth, reading, ts, level
Task: Retrieve level from cloud_cover whose ts is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025259 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, lon, lat, ts
Sensor: uv_index | fields: value, reading, ts, type
Task: Fetch lat from wind_speed where depth is greater than the maximum of reading in uv_index for matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"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_025260 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: type, depth, unit, reading
Sensor: air_quality | fields: qc, ts, reading, unit
Task: Fetch lon from cloud_cover that have at least one corresponding air_quality measurement for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025261 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, ts, lon, type
Sensor: drought_index | fields: depth, level, unit, value
Task: Get reading from wind_speed where a corresponding entry exists in drought_index with the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025262 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: type, unit, lon, level
Sensor: sunlight | fields: depth, reading, lon, level
Task: Get lat from dew_point where depth exceeds the total value from sunlight for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025263 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: value, reading, qc, level
Sensor: air_quality | fields: depth, qc, value, ts
Task: Retrieve lat from uv_index whose unit is found in air_quality records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025264 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: reading, ts, unit, type
Sensor: drought_index | fields: unit, depth, lat, value
Task: Retrieve reading from soil_moisture that have at least one matching reading in drought_index sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025265 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: lat, reading, type, value
Sensor: drought_index | fields: depth, lon, unit, value
Task: Get lat from lightning where depth appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025266 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: reading, type, qc, lat
Sensor: cloud_cover | fields: lon, lat, reading, depth
Task: Get reading from snow_depth where depth exceeds the minimum depth from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025267 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: type, ts, level, value
Sensor: wind_speed | fields: reading, qc, type, value
Task: Fetch reading from drought_index where ts exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025268 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: lat, ts, level, lon
Sensor: turbidity | fields: type, reading, lon, value
Task: Fetch depth from sunlight that have at least one corresponding turbidity measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025269 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: ts, qc, lat, level
Sensor: turbidity | fields: depth, type, value, reading
Task: Get reading from frost where a corresponding entry exists in turbidity with the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025270 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: unit, qc, depth, reading
Sensor: rainfall | fields: lat, depth, lon, qc
Task: Retrieve depth from dew_point that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025271 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: lon, unit, reading, type
Sensor: temperature | fields: reading, lon, level, value
Task: Retrieve depth from uv_index with depth above the AVG(reading) of temperature readings sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025272 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: ts, lat, depth, unit
Sensor: rainfall | fields: lon, qc, value, unit
Task: Retrieve depth from visibility whose type is found in rainfall records where ts matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025273 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: unit, lat, ts, type
Sensor: uv_index | fields: lon, lat, level, reading
Task: Get lon from cloud_cover where reading exceeds the average value from uv_index for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025274 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: level, lon, ts, unit
Sensor: drought_index | fields: ts, lon, level, reading
Task: Fetch level from cloud_cover where unit exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025275 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: depth, lon, lat, reading
Sensor: turbidity | fields: ts, value, lat, qc
Task: Get reading from dew_point where ts appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025276 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: depth, lat, qc, value
Sensor: pressure | fields: value, reading, type, ts
Task: Retrieve lat from lightning with value above the AVG(value) of pressure readings sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025277 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: type, lon, unit, reading
Sensor: evaporation | fields: lat, type, unit, ts
Task: Fetch lat from visibility that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025278 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: qc, reading, lat, level
Sensor: wind_speed | fields: depth, lat, value, type
Task: Fetch value from turbidity where depth exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025279 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: value, unit, type, reading
Sensor: dew_point | fields: level, type, unit, lon
Task: Get value from rainfall where qc appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025280 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: value, depth, level, unit
Sensor: visibility | fields: lat, type, level, lon
Task: Fetch lon from frost that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025281 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: ts, type, lat, reading
Sensor: turbidity | fields: depth, level, lat, unit
Task: Fetch reading from rainfall that have at least one corresponding turbidity measurement for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025282 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: lat, unit, qc, type
Sensor: soil_moisture | fields: level, lat, ts, depth
Task: Retrieve lat from cloud_cover with value above the MIN(reading) of soil_moisture readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025283 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: level, lon, lat, value
Sensor: sunlight | fields: unit, reading, lon, ts
Task: Retrieve lat from visibility that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025284 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: qc, type, depth, unit
Sensor: cloud_cover | fields: value, ts, unit, lat
Task: Retrieve level from temperature whose ts is found in cloud_cover records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025285 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: lat, depth, lon, ts
Sensor: frost | fields: lat, depth, level, qc
Task: Get value from temperature where qc appears in frost readings with matching qc.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="qc",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025286 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: value, unit, level, reading
Sensor: sunlight | fields: unit, lat, value, qc
Task: Retrieve lat from rainfall whose type is found in sunlight records where ts matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025287 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: ts, depth, value, unit
Sensor: dew_point | fields: lat, depth, lon, ts
Task: Get lon from snow_depth where unit appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025288 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: value, depth, level, qc
Sensor: temperature | fields: level, type, reading, depth
Task: Retrieve level from wind_speed with reading above the MAX(value) of temperature readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025289 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: level, lon, qc, unit
Sensor: sunlight | fields: value, lon, ts, reading
Task: Fetch reading from visibility where depth exists in sunlight sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025290 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: lat, ts, reading, unit
Sensor: sunlight | fields: lon, type, lat, unit
Task: Fetch lon from uv_index where qc exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025291 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: type, qc, depth, unit
Sensor: lightning | fields: unit, type, reading, ts
Task: Retrieve level from rainfall that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025292 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: unit, level, depth, reading
Sensor: evaporation | fields: qc, lat, ts, lon
Task: Get level from uv_index where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025293 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: ts, depth, lat, unit
Sensor: soil_moisture | fields: unit, depth, reading, level
Task: Fetch lat from humidity that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025294 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: reading, type, depth, level
Sensor: rainfall | fields: lat, level, type, reading
Task: Retrieve value from pressure that have at least one matching reading in rainfall sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025295 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: level, qc, depth, unit
Sensor: humidity | fields: value, qc, unit, type
Task: Fetch value from air_quality where qc exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025296 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: unit, qc, level, lon
Sensor: rainfall | fields: type, unit, qc, value
Task: Retrieve lon from drought_index whose unit is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025297 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: value, lat, level, qc
Sensor: temperature | fields: level, type, reading, unit
Task: Fetch depth from air_quality where type exists in temperature sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_025298 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: value, unit, type, depth
Sensor: rainfall | fields: unit, qc, lon, value
Task: Fetch reading from wind_speed where depth is greater than the total of depth in rainfall for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_025299 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.