variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: drought_index | code: clr | fields: value, depth, lat, reading
Sensor: air_quality | fields: unit, value, depth, reading
Task: Get lon from drought_index where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063900 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: reading, type, qc, unit
Sensor: evaporation | fields: value, lat, ts, level
Task: Retrieve level from lightning with depth above the AVG(reading) of evaporation readings sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"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_063901 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: unit, level, value, type
Sensor: drought_index | fields: qc, unit, value, level
Task: Get value from rainfall where depth exceeds the count of reading from drought_index for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063902 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: ts, depth, unit, reading
Sensor: rainfall | fields: level, lon, reading, qc
Task: Retrieve depth from snow_depth whose qc is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063903 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: level, value, reading, unit
Sensor: lightning | fields: type, ts, value, qc
Task: Get value from uv_index where depth exceeds the maximum depth from lightning for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063904 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: reading, lat, type, level
Sensor: air_quality | fields: qc, depth, lat, value
Task: Get value from wind_speed where depth exceeds the minimum depth from air_quality for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063905 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: level, lon, qc, type
Sensor: humidity | fields: value, reading, lon, level
Task: Fetch level from lightning that have at least one corresponding humidity measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063906 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: level, unit, ts, qc
Sensor: turbidity | fields: level, depth, unit, type
Task: Retrieve lat from pressure whose depth is found in turbidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063907 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: reading, level, ts, value
Sensor: snow_depth | fields: ts, type, depth, value
Task: Get level from frost where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063908 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: type, lat, lon, unit
Sensor: soil_moisture | fields: ts, lat, reading, value
Task: Retrieve lon from visibility whose unit is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063909 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: reading, lat, type, depth
Sensor: temperature | fields: lat, reading, unit, depth
Task: Fetch reading from drought_index that have at least one corresponding temperature measurement for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063910 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: level, qc, type, lat
Sensor: cloud_cover | fields: ts, value, qc, unit
Task: Fetch lon from visibility where ts exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063911 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: ts, depth, qc, reading
Sensor: rainfall | fields: ts, type, value, qc
Task: Fetch depth from turbidity where unit exists in rainfall sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063912 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: reading, type, unit, lon
Sensor: visibility | fields: depth, qc, reading, unit
Task: Retrieve depth from evaporation that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063913 | train |
v3 | Sensor network script:
Node: rainfall | code: thr | fields: unit, type, qc, level
Sensor: evaporation | fields: depth, unit, reading, type
Task: Get reading from rainfall where reading exceeds the count of depth from evaporation for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063914 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: depth, unit, lon, value
Sensor: evaporation | fields: ts, depth, reading, unit
Task: Retrieve reading from pressure with depth above the MAX(value) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063915 | train |
v3 | Sensor network script:
Node: drought_index | code: mst | fields: depth, unit, lon, value
Sensor: evaporation | fields: reading, value, unit, level
Task: Fetch level from drought_index where value is greater than the minimum of reading in evaporation for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063916 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: lat, type, qc, depth
Sensor: rainfall | fields: unit, lon, value, type
Task: Fetch value from visibility where unit exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063917 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: value, qc, lat, lon
Sensor: pressure | fields: ts, unit, qc, lon
Task: Retrieve value from wind_speed whose qc is found in pressure records where qc matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063918 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: type, reading, level, qc
Sensor: rainfall | fields: type, level, reading, ts
Task: Get lon from snow_depth where unit appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063919 | train |
v3 | Sensor network script:
Node: frost | code: stn | fields: lat, type, unit, reading
Sensor: temperature | fields: ts, lat, qc, reading
Task: Get reading from frost where depth exceeds the minimum reading from temperature for the same ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063920 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: value, lat, qc, unit
Sensor: humidity | fields: lon, depth, type, level
Task: Retrieve reading from lightning whose depth is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063921 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: depth, ts, lon, type
Sensor: humidity | fields: qc, unit, depth, type
Task: Retrieve lat from wind_speed whose depth is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063922 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: value, unit, lat, qc
Sensor: humidity | fields: qc, ts, reading, type
Task: Fetch reading from pressure that have at least one corresponding humidity measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063923 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: qc, unit, reading, level
Sensor: dew_point | fields: value, lat, depth, type
Task: Retrieve depth from soil_moisture whose type is found in dew_point records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063924 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: unit, depth, value, lat
Sensor: lightning | fields: reading, type, ts, lat
Task: Get reading from turbidity where ts appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063925 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: value, lon, qc, level
Sensor: sunlight | fields: qc, lat, ts, reading
Task: Get value from soil_moisture where depth exceeds the maximum depth from sunlight for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063926 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: lat, ts, value, unit
Sensor: wind_speed | fields: ts, unit, lat, qc
Task: Fetch depth from uv_index where depth exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063927 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: unit, lon, reading, qc
Sensor: air_quality | fields: lat, ts, unit, reading
Task: Fetch lat from rainfall where qc exists in air_quality sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063928 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: unit, lat, type, ts
Sensor: snow_depth | fields: level, qc, lat, value
Task: Get depth from temperature where ts appears in snow_depth readings with matching depth.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063929 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: lat, type, level, unit
Sensor: humidity | fields: lat, unit, depth, reading
Task: Get reading from cloud_cover where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063930 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: type, lon, unit, reading
Sensor: lightning | fields: lon, ts, depth, level
Task: Fetch level from uv_index that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063931 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: value, reading, qc, lat
Sensor: visibility | fields: ts, type, unit, depth
Task: Get depth from frost where qc appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063932 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: lat, type, unit, reading
Sensor: humidity | fields: lat, lon, depth, type
Task: Get reading from visibility where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063933 | train |
v2 | Sensor network script:
Node: dew_point | code: ref | fields: lon, qc, depth, type
Sensor: temperature | fields: ts, qc, unit, value
Task: Fetch reading from dew_point that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063934 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: ts, reading, depth, value
Sensor: drought_index | fields: qc, level, value, reading
Task: Get reading from humidity where a corresponding entry exists in drought_index with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063935 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: reading, level, unit, depth
Sensor: frost | fields: ts, lat, qc, unit
Task: Fetch depth from dew_point where type exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="qc",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063936 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: ts, value, level, unit
Sensor: evaporation | fields: type, ts, lat, unit
Task: Fetch value from rainfall that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063937 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: reading, qc, depth, lat
Sensor: snow_depth | fields: lon, qc, type, lat
Task: Fetch level from lightning that have at least one corresponding snow_depth measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063938 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: reading, level, unit, qc
Sensor: soil_moisture | fields: unit, ts, level, lon
Task: Fetch reading from pressure that have at least one corresponding soil_moisture measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063939 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: lat, type, ts, qc
Sensor: humidity | fields: value, lat, type, level
Task: Get lat from lightning where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063940 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: type, depth, value, qc
Sensor: turbidity | fields: lat, level, type, depth
Task: Get lat from rainfall where ts appears in turbidity readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063941 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: value, lat, lon, unit
Sensor: snow_depth | fields: type, lat, unit, lon
Task: Fetch value from turbidity that have at least one corresponding snow_depth measurement for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063942 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: lon, type, depth, qc
Sensor: dew_point | fields: qc, value, type, level
Task: Get reading from wind_speed where reading exceeds the average value from dew_point for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063943 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: level, qc, ts, value
Sensor: snow_depth | fields: reading, depth, value, type
Task: Fetch value from wind_speed where reading is greater than the total of reading in snow_depth for matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063944 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: lon, depth, level, type
Sensor: dew_point | fields: level, ts, qc, depth
Task: Fetch depth from pressure where depth is greater than the total of value in dew_point for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063945 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: level, depth, lon, type
Sensor: snow_depth | fields: value, ts, qc, reading
Task: Fetch lon from cloud_cover that have at least one corresponding snow_depth measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063946 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: unit, depth, ts, qc
Sensor: humidity | fields: lat, reading, qc, value
Task: Fetch depth from lightning where qc exists in humidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063947 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: lat, level, qc, unit
Sensor: lightning | fields: qc, lon, reading, value
Task: Get value from rainfall where depth exceeds the minimum reading from lightning for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063948 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: lat, type, reading, level
Sensor: sunlight | fields: reading, ts, lat, depth
Task: Retrieve lat from soil_moisture with depth above the COUNT(value) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063949 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: type, depth, level, qc
Sensor: humidity | fields: type, reading, qc, lon
Task: Retrieve depth from sunlight with depth above the MIN(reading) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063950 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: level, reading, depth, lon
Sensor: drought_index | fields: type, value, qc, unit
Task: Get depth from visibility where depth appears in drought_index readings with matching unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063951 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: level, depth, reading, ts
Sensor: temperature | fields: qc, type, lon, reading
Task: Retrieve depth from snow_depth with reading above the MAX(reading) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("temperature", code="thr"),
match="type"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063952 | train |
v1 | Sensor network script:
Node: wind_speed | code: stn | fields: reading, depth, type, ts
Sensor: sunlight | fields: level, depth, value, lat
Task: Retrieve level from wind_speed whose ts is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063953 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: qc, reading, ts, depth
Sensor: temperature | fields: depth, reading, unit, level
Task: Fetch lat from uv_index where qc exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063954 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: depth, lat, lon, ts
Sensor: soil_moisture | fields: lat, reading, type, value
Task: Get value from sunlight where reading exceeds the average value from soil_moisture for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063955 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: type, qc, lat, reading
Sensor: humidity | fields: lat, ts, depth, reading
Task: Get depth from soil_moisture where reading exceeds the maximum reading from humidity for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063956 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: value, level, unit, reading
Sensor: snow_depth | fields: unit, ts, value, level
Task: Retrieve value from temperature with reading above the AVG(reading) of snow_depth readings sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063957 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: unit, ts, reading, level
Sensor: snow_depth | fields: unit, qc, type, value
Task: Fetch value from soil_moisture where qc exists in snow_depth sensor data for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063958 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: value, lat, level, unit
Sensor: drought_index | fields: reading, lon, qc, lat
Task: Get level from snow_depth where a corresponding entry exists in drought_index with the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063959 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: type, lon, qc, lat
Sensor: frost | fields: reading, depth, lon, level
Task: Get reading from pressure where type appears in frost readings with matching qc.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="qc",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063960 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: value, lon, lat, level
Sensor: dew_point | fields: type, qc, lon, unit
Task: Get lon from visibility where type appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063961 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: type, lon, reading, ts
Sensor: wind_speed | fields: value, depth, lon, lat
Task: Fetch reading from snow_depth where type exists in wind_speed sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063962 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: ts, qc, value, depth
Sensor: snow_depth | fields: unit, depth, type, reading
Task: Get value from visibility where value exceeds the maximum value from snow_depth for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063963 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: qc, reading, unit, ts
Sensor: air_quality | fields: level, ts, qc, lat
Task: Get depth from temperature where ts appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063964 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: qc, lat, unit, value
Sensor: air_quality | fields: value, unit, lon, reading
Task: Fetch depth from rainfall where ts exists in air_quality sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063965 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: lat, level, depth, ts
Sensor: humidity | fields: unit, lon, level, value
Task: Fetch reading from cloud_cover that have at least one corresponding humidity measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063966 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: qc, depth, value, reading
Sensor: uv_index | fields: qc, ts, unit, level
Task: Get lon from cloud_cover where type appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063967 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: lon, unit, type, lat
Sensor: pressure | fields: lat, ts, lon, reading
Task: Get reading from dew_point where value exceeds the minimum depth from pressure for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063968 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: level, type, value, lon
Sensor: temperature | fields: depth, type, value, reading
Task: Get reading from dew_point where depth exceeds the count of reading from temperature for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "reading",
"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_063969 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: ts, depth, value, lon
Sensor: visibility | fields: qc, unit, level, value
Task: Fetch depth from evaporation where depth is greater than the total of reading in visibility for matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063970 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: unit, depth, reading, level
Sensor: dew_point | fields: reading, qc, level, type
Task: Retrieve lon from pressure that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063971 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: type, lon, lat, value
Sensor: sunlight | fields: value, lon, lat, reading
Task: Fetch level from drought_index that have at least one corresponding sunlight measurement for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063972 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: type, reading, ts, level
Sensor: evaporation | fields: unit, ts, type, reading
Task: Retrieve lat from visibility that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063973 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: type, lon, unit, lat
Sensor: turbidity | fields: depth, unit, level, ts
Task: Fetch lon from drought_index where unit exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063974 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: reading, qc, unit, value
Sensor: dew_point | fields: depth, unit, lat, lon
Task: Get value from humidity where value exceeds the count of depth from dew_point for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063975 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: ts, level, lat, unit
Sensor: visibility | fields: level, qc, unit, lat
Task: Get depth from lightning where a corresponding entry exists in visibility with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063976 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: reading, value, lon, lat
Sensor: visibility | fields: level, type, lat, value
Task: Get reading from sunlight where reading exceeds the average depth from visibility for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063977 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: qc, lat, reading, unit
Sensor: temperature | fields: lon, unit, ts, value
Task: Fetch lon from evaporation that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063978 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: qc, lat, reading, ts
Sensor: evaporation | fields: qc, value, lon, type
Task: Retrieve lat from drought_index with depth above the COUNT(reading) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063979 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, type, value, lon
Sensor: turbidity | fields: value, lat, type, lon
Task: Retrieve level from soil_moisture that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063980 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: reading, lon, unit, depth
Sensor: wind_speed | fields: unit, value, level, type
Task: Fetch level from sunlight where reading is greater than the total of reading in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063981 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: unit, qc, level, reading
Sensor: visibility | fields: level, type, value, lon
Task: Retrieve depth from evaporation whose depth is found in visibility records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063982 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: depth, value, ts, qc
Sensor: sunlight | fields: ts, level, qc, depth
Task: Get lon from soil_moisture where a corresponding entry exists in sunlight with the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063983 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: qc, reading, unit, value
Sensor: lightning | fields: ts, depth, lat, unit
Task: Fetch lon from drought_index where value is greater than the maximum of reading in lightning for matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063984 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: qc, reading, unit, depth
Sensor: uv_index | fields: qc, unit, level, lat
Task: Fetch depth from cloud_cover that have at least one corresponding uv_index measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063985 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: unit, reading, value, lon
Sensor: pressure | fields: value, reading, qc, depth
Task: Fetch lat from wind_speed where type exists in pressure sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063986 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: reading, unit, type, level
Sensor: air_quality | fields: reading, value, level, type
Task: Retrieve lat from cloud_cover whose depth is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063987 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: reading, lon, qc, level
Sensor: snow_depth | fields: qc, depth, type, lat
Task: Get lon from air_quality where type appears in snow_depth readings with matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063988 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: lon, lat, level, type
Sensor: frost | fields: lon, depth, unit, value
Task: Fetch reading from uv_index where ts exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063989 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: unit, depth, qc, level
Sensor: temperature | fields: unit, level, reading, ts
Task: Get reading from turbidity where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_063990 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: level, value, lat, unit
Sensor: pressure | fields: type, qc, lon, value
Task: Get lat from drought_index where a corresponding entry exists in pressure with the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063991 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: type, level, lon, value
Sensor: frost | fields: unit, type, value, qc
Task: Fetch depth from sunlight where type exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="unit",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063992 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: reading, value, lat, ts
Sensor: drought_index | fields: unit, value, reading, ts
Task: Fetch lat from wind_speed that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063993 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: qc, unit, depth, type
Sensor: rainfall | fields: reading, level, unit, lat
Task: Get depth from temperature where ts appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063994 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: value, lon, unit, qc
Sensor: uv_index | fields: reading, value, depth, lon
Task: Get value from soil_moisture where a corresponding entry exists in uv_index with the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063995 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: lat, value, lon, depth
Sensor: drought_index | fields: unit, lon, level, type
Task: Get depth from evaporation where a corresponding entry exists in drought_index with the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063996 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: reading, ts, qc, value
Sensor: evaporation | fields: value, lat, level, reading
Task: Fetch lon from frost that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063997 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: lon, unit, level, lat
Sensor: cloud_cover | fields: unit, lon, lat, depth
Task: Fetch level from rainfall that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063998 | train |
v2 | Sensor network script:
Node: soil_moisture | code: ref | fields: depth, qc, type, lon
Sensor: dew_point | fields: value, level, type, lon
Task: Get reading from soil_moisture where a corresponding entry exists in dew_point with the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_063999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.