variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: qc, value, reading, level
Sensor: visibility | fields: reading, ts, type, level
Task: Retrieve lon from wind_speed with value above the MIN(reading) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023900 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: value, unit, type, depth
Sensor: cloud_cover | fields: value, qc, type, unit
Task: Fetch level from uv_index where ts exists in cloud_cover sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023901 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: unit, lon, qc, type
Sensor: snow_depth | fields: level, unit, lat, value
Task: Fetch level from rainfall where type exists in snow_depth sensor data for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023902 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: lat, ts, reading, qc
Sensor: wind_speed | fields: unit, qc, lon, value
Task: Get lat from humidity where qc appears in wind_speed readings with matching type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023903 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: depth, lon, lat, unit
Sensor: visibility | fields: level, lat, value, type
Task: Fetch value from rainfall where unit exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023904 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: lat, value, depth, unit
Sensor: air_quality | fields: reading, value, type, depth
Task: Get lat from temperature where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023905 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: reading, level, qc, type
Sensor: wind_speed | fields: level, type, depth, lon
Task: Retrieve lon from evaporation whose type is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023906 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: unit, level, qc, lon
Sensor: wind_speed | fields: depth, qc, value, ts
Task: Retrieve reading from uv_index that have at least one matching reading in wind_speed sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023907 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: type, lon, level, ts
Sensor: air_quality | fields: level, type, lon, value
Task: Retrieve reading from rainfall that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023908 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: level, depth, lon, lat
Sensor: turbidity | fields: qc, lat, level, depth
Task: Fetch value from sunlight that have at least one corresponding turbidity measurement for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023909 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: qc, ts, level, unit
Sensor: uv_index | fields: ts, level, depth, type
Task: Fetch lon from soil_moisture that have at least one corresponding uv_index measurement for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"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_023910 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: level, lat, value, ts
Sensor: wind_speed | fields: qc, depth, type, ts
Task: Retrieve depth from pressure that have at least one matching reading in wind_speed sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023911 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: ts, lon, type, unit
Sensor: cloud_cover | fields: reading, lon, level, lat
Task: Get lon from temperature where qc appears in cloud_cover readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023912 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: level, value, lat, ts
Sensor: humidity | fields: lat, lon, ts, qc
Task: Retrieve level from temperature whose type is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023913 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: lat, level, depth, ts
Sensor: air_quality | fields: depth, level, value, qc
Task: Fetch lat from uv_index that have at least one corresponding air_quality measurement for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023914 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: lat, qc, type, reading
Sensor: temperature | fields: depth, value, level, ts
Task: Get depth from turbidity where reading exceeds the average reading from temperature for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023915 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: lon, unit, lat, depth
Sensor: evaporation | fields: lat, type, depth, level
Task: Fetch level from sunlight where value is greater than the minimum of depth in evaporation for matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023916 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: ts, type, level, unit
Sensor: humidity | fields: lon, lat, ts, qc
Task: Fetch reading from turbidity where depth is greater than the count of of value in humidity for matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023917 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: type, value, qc, level
Sensor: lightning | fields: depth, ts, lon, unit
Task: Fetch lon from frost that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023918 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: depth, lat, lon, unit
Sensor: frost | fields: level, lat, type, reading
Task: Retrieve reading from snow_depth with depth above the AVG(depth) of frost readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023919 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: depth, reading, value, qc
Sensor: temperature | fields: level, qc, lat, depth
Task: Retrieve value from humidity that have at least one matching reading in temperature sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023920 | train |
v3 | Sensor network script:
Node: snow_depth | code: prt | fields: reading, lon, value, type
Sensor: sunlight | fields: depth, ts, qc, value
Task: Fetch lat from snow_depth where reading is greater than the maximum of depth in sunlight for matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023921 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: type, lat, qc, value
Sensor: pressure | fields: depth, ts, value, unit
Task: Fetch lon from cloud_cover that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023922 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: lat, level, depth, type
Sensor: pressure | fields: value, unit, depth, lat
Task: Fetch depth from sunlight where depth exists in pressure sensor data for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023923 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: level, type, depth, unit
Sensor: rainfall | fields: level, depth, type, lon
Task: Get depth from drought_index where unit appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023924 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: lon, ts, value, level
Sensor: cloud_cover | fields: lon, lat, qc, reading
Task: Fetch value from frost where type exists in cloud_cover sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023925 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: depth, unit, type, value
Sensor: sunlight | fields: lat, depth, unit, lon
Task: Get depth from wind_speed where value exceeds the minimum reading from sunlight for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023926 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: type, unit, level, lon
Sensor: dew_point | fields: type, value, level, unit
Task: Fetch reading from pressure where reading is greater than the count of of depth in dew_point for matching type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023927 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: qc, lat, ts, type
Sensor: uv_index | fields: level, depth, ts, lon
Task: Retrieve value from rainfall that have at least one matching reading in uv_index sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023928 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: type, reading, qc, lon
Sensor: cloud_cover | fields: depth, unit, ts, qc
Task: Get lat from wind_speed where qc appears in cloud_cover readings with matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023929 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: lat, value, lon, qc
Sensor: air_quality | fields: reading, lon, lat, depth
Task: Get level from sunlight where type appears in air_quality readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="type",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023930 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: type, reading, ts, lat
Sensor: frost | fields: lat, depth, type, reading
Task: Fetch level from temperature where depth exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "temperature",
"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_023931 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: lon, value, qc, unit
Sensor: wind_speed | fields: lat, qc, ts, type
Task: Fetch value from visibility that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023932 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: depth, reading, ts, qc
Sensor: turbidity | fields: level, qc, unit, ts
Task: Get depth from uv_index where qc appears in turbidity readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023933 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: lat, ts, qc, unit
Sensor: dew_point | fields: qc, depth, value, lat
Task: Fetch value from uv_index where value is greater than the maximum of value in dew_point for matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023934 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: qc, level, lat, depth
Sensor: rainfall | fields: depth, reading, value, lat
Task: Retrieve level from temperature that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023935 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: reading, value, level, type
Sensor: drought_index | fields: value, type, reading, qc
Task: Fetch lon from sunlight that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023936 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: level, depth, type, value
Sensor: uv_index | fields: lon, qc, value, lat
Task: Retrieve reading from lightning that have at least one matching reading in uv_index sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023937 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: lat, qc, depth, reading
Sensor: turbidity | fields: lat, value, ts, reading
Task: Get depth from cloud_cover where depth exceeds the maximum depth from turbidity for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023938 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: unit, lat, depth, lon
Sensor: humidity | fields: lon, value, depth, lat
Task: Get lon from lightning where depth exceeds the average value from humidity for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023939 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: depth, lat, reading, unit
Sensor: frost | fields: level, lon, ts, qc
Task: Get value from humidity where a corresponding entry exists in frost with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023940 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: reading, unit, type, lon
Sensor: pressure | fields: depth, level, unit, reading
Task: Fetch reading from sunlight where depth exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023941 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: depth, ts, unit, lon
Sensor: evaporation | fields: lon, qc, unit, lat
Task: Retrieve lat from lightning with depth above the MIN(depth) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023942 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: lat, type, level, ts
Sensor: temperature | fields: qc, lat, depth, level
Task: Get level from humidity where qc appears in temperature readings with matching depth.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023943 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: value, unit, level, ts
Sensor: visibility | fields: unit, value, qc, depth
Task: Fetch reading from pressure that have at least one corresponding visibility measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023944 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: lat, level, unit, qc
Sensor: lightning | fields: depth, reading, type, value
Task: Get lon from turbidity where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023945 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: unit, value, lon, lat
Sensor: dew_point | fields: reading, lat, lon, qc
Task: Fetch value from turbidity that have at least one corresponding dew_point measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023946 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: depth, lon, reading, type
Sensor: cloud_cover | fields: reading, lat, depth, ts
Task: Retrieve lon from temperature with reading above the COUNT(value) of cloud_cover readings sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023947 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: ts, reading, qc, depth
Sensor: cloud_cover | fields: ts, depth, value, lon
Task: Fetch lat from uv_index where qc exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023948 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: ts, depth, reading, lon
Sensor: temperature | fields: type, depth, reading, level
Task: Fetch depth from humidity where depth exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="unit",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023949 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: reading, lat, type, depth
Sensor: snow_depth | fields: value, ts, type, lat
Task: Get value from air_quality where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023950 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: ts, level, lon, unit
Sensor: wind_speed | fields: type, qc, ts, level
Task: Fetch lat from evaporation that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023951 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: type, ts, unit, value
Sensor: soil_moisture | fields: ts, value, depth, lon
Task: Get value from pressure where depth exceeds the maximum value from soil_moisture for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023952 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: depth, lat, unit, qc
Sensor: cloud_cover | fields: lon, depth, qc, value
Task: Retrieve reading from uv_index with value above the MAX(reading) of cloud_cover readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023953 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: value, unit, depth, ts
Sensor: air_quality | fields: ts, type, value, depth
Task: Retrieve lon from temperature whose type is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023954 | train |
v3 | Sensor network script:
Node: evaporation | code: hub | fields: level, type, lat, value
Sensor: uv_index | fields: unit, ts, type, value
Task: Fetch lon from evaporation where depth is greater than the average of depth in uv_index for matching type.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023955 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: unit, depth, value, level
Sensor: soil_moisture | fields: qc, lat, depth, unit
Task: Get level from drought_index where ts appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023956 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: type, unit, depth, value
Sensor: dew_point | fields: reading, qc, unit, value
Task: Get depth from humidity where depth exceeds the total depth from dew_point for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023957 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: value, type, unit, depth
Sensor: uv_index | fields: ts, type, qc, lon
Task: Retrieve value from visibility with depth above the MIN(depth) of uv_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023958 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: type, depth, lon, lat
Sensor: evaporation | fields: lat, qc, value, unit
Task: Retrieve value from temperature whose type is found in evaporation records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023959 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: reading, depth, type, lon
Sensor: rainfall | fields: type, ts, value, unit
Task: Fetch lat from sunlight where depth is greater than the minimum of value in rainfall for matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023960 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: value, depth, unit, qc
Sensor: air_quality | fields: unit, level, lat, value
Task: Fetch depth from dew_point where depth exists in air_quality sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023961 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: lat, type, ts, reading
Sensor: sunlight | fields: lat, type, lon, qc
Task: Retrieve level from uv_index whose depth is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023962 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: value, reading, lon, unit
Sensor: dew_point | fields: depth, qc, reading, level
Task: Fetch level from drought_index that have at least one corresponding dew_point measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023963 | train |
v2 | Sensor network script:
Node: snow_depth | code: ref | fields: level, depth, lat, lon
Sensor: evaporation | fields: type, depth, level, qc
Task: Retrieve lat from snow_depth that have at least one matching reading in evaporation sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023964 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: ts, type, level, value
Sensor: turbidity | fields: value, ts, lat, lon
Task: Fetch value from evaporation that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023965 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: value, lat, depth, lon
Sensor: air_quality | fields: unit, type, depth, lon
Task: Retrieve depth from wind_speed whose depth is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023966 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: reading, qc, unit, lon
Sensor: frost | fields: qc, unit, lat, level
Task: Get value from drought_index where value exceeds the minimum reading from frost for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023967 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: lat, lon, type, value
Sensor: soil_moisture | fields: lat, reading, value, lon
Task: Get level from pressure where depth exceeds the total value from soil_moisture for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023968 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: value, level, lon, depth
Sensor: temperature | fields: unit, qc, type, value
Task: Get level from cloud_cover where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023969 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: level, ts, unit, lon
Sensor: lightning | fields: lon, qc, ts, depth
Task: Get level from temperature where value exceeds the average value from lightning for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023970 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: value, ts, lon, type
Sensor: sunlight | fields: level, type, unit, value
Task: Retrieve value from uv_index whose qc is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023971 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: value, level, qc, reading
Sensor: humidity | fields: type, lat, ts, qc
Task: Get reading from pressure where unit appears in humidity readings with matching depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023972 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: depth, value, lat, qc
Sensor: rainfall | fields: lon, lat, qc, 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="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023973 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: value, lon, qc, lat
Sensor: lightning | fields: unit, ts, lon, lat
Task: Fetch lon from frost that have at least one corresponding lightning measurement for the same qc.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023974 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: level, type, lon, value
Sensor: cloud_cover | fields: reading, unit, lon, depth
Task: Get level from uv_index where a corresponding entry exists in cloud_cover with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023975 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: unit, lat, type, reading
Sensor: temperature | fields: ts, level, reading, unit
Task: Get level from rainfall where reading exceeds the count of value from temperature for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023976 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: type, lat, ts, lon
Sensor: turbidity | fields: level, lat, lon, ts
Task: Retrieve reading from temperature with value above the AVG(reading) of turbidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023977 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: type, unit, lon, value
Sensor: drought_index | fields: depth, ts, lat, type
Task: Fetch lon from sunlight where ts exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023978 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: level, qc, depth, unit
Sensor: cloud_cover | fields: qc, level, ts, value
Task: Get lat from dew_point where a corresponding entry exists in cloud_cover with the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023979 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: qc, value, lon, depth
Sensor: frost | fields: lat, level, ts, reading
Task: Fetch depth from evaporation that have at least one corresponding frost measurement for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023980 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: value, lat, lon, level
Sensor: rainfall | fields: type, qc, depth, unit
Task: Retrieve depth from snow_depth whose type is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023981 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: depth, type, value, level
Sensor: frost | fields: depth, ts, unit, level
Task: Get reading from dew_point where a corresponding entry exists in frost with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023982 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: reading, lon, unit, lat
Sensor: dew_point | fields: type, ts, depth, qc
Task: Retrieve level from cloud_cover whose ts is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023983 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, qc, lat, unit
Sensor: dew_point | fields: lon, unit, depth, qc
Task: Fetch reading from snow_depth where reading is greater than the minimum of depth in dew_point for matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023984 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: lon, value, reading, type
Sensor: drought_index | fields: qc, lon, ts, value
Task: Fetch reading from soil_moisture that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023985 | train |
v3 | Sensor network script:
Node: visibility | code: gst | fields: ts, level, unit, type
Sensor: dew_point | fields: reading, depth, value, unit
Task: Fetch level from visibility where reading is greater than the minimum of depth in dew_point for matching unit.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023986 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: ts, qc, lon, type
Sensor: lightning | fields: unit, lat, lon, depth
Task: Retrieve level from cloud_cover that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023987 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: value, type, lat, level
Sensor: sunlight | fields: value, depth, unit, level
Task: Fetch depth from frost where reading is greater than the count of of value in sunlight for matching qc.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023988 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: type, level, depth, ts
Sensor: rainfall | fields: ts, value, depth, reading
Task: Retrieve lon from sunlight whose ts is found in rainfall records where qc matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023989 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: lon, ts, reading, level
Sensor: wind_speed | fields: ts, depth, reading, lat
Task: Fetch depth from snow_depth where value is greater than the total of value in wind_speed for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023990 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: unit, type, reading, lat
Sensor: frost | fields: qc, ts, value, lat
Task: Get level from snow_depth where type appears in frost readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="qc",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023991 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: lat, type, depth, unit
Sensor: temperature | fields: type, ts, unit, depth
Task: Get reading from soil_moisture where reading exceeds the count of depth from temperature for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023992 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: ts, qc, unit, lon
Sensor: temperature | fields: unit, type, depth, level
Task: Fetch lon from sunlight where reading is greater than the minimum of depth in temperature for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023993 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: lon, reading, type, unit
Sensor: turbidity | fields: lon, ts, value, reading
Task: Fetch lat from drought_index where unit exists in turbidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023994 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: qc, type, unit, reading
Sensor: wind_speed | fields: type, depth, unit, lat
Task: Retrieve lon from evaporation whose qc is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023995 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: value, lat, type, qc
Sensor: wind_speed | fields: lon, ts, value, qc
Task: Get depth from humidity where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_023996 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: qc, ts, lon, depth
Sensor: drought_index | fields: lat, qc, ts, depth
Task: Fetch lon from soil_moisture that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023997 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: lon, unit, depth, reading
Sensor: cloud_cover | fields: level, value, depth, lat
Task: Get value from humidity where a corresponding entry exists in cloud_cover with the same ts.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023998 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: reading, type, ts, unit
Sensor: lightning | fields: depth, type, ts, lon
Task: Fetch lat from evaporation that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_023999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.