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: soil_moisture | code: ref | fields: value, qc, lat, unit
Sensor: temperature | fields: lon, level, reading, value
Task: Retrieve lon from soil_moisture that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073900 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: depth, type, qc, lon
Sensor: air_quality | fields: lon, ts, value, level
Task: Get value from uv_index where reading exceeds the total value from air_quality for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073901 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: level, reading, qc, unit
Sensor: visibility | fields: qc, lon, lat, level
Task: Retrieve value from air_quality whose depth is found in visibility records where depth matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073902 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: reading, type, qc, unit
Sensor: pressure | fields: type, value, level, lon
Task: Retrieve depth from snow_depth that have at least one matching reading in pressure sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073903 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: level, lon, unit, reading
Sensor: cloud_cover | fields: lon, reading, ts, value
Task: Retrieve lat from drought_index that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073904 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: type, lon, depth, qc
Sensor: evaporation | fields: type, value, lon, unit
Task: Get value from wind_speed where depth appears in evaporation readings with matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073905 | train |
v3 | Sensor network script:
Node: lightning | code: hub | fields: value, qc, level, type
Sensor: snow_depth | fields: unit, reading, depth, ts
Task: Retrieve depth from lightning with depth above the MIN(depth) of snow_depth readings sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073906 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: value, lat, lon, qc
Sensor: sunlight | fields: reading, type, value, lon
Task: Get level from humidity where qc appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073907 | train |
v3 | Sensor network script:
Node: humidity | code: thr | fields: reading, qc, ts, value
Sensor: drought_index | fields: value, ts, lat, unit
Task: Get value from humidity where depth exceeds the minimum reading from drought_index for the same type.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073908 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: depth, level, reading, qc
Sensor: frost | fields: qc, type, lat, depth
Task: Fetch lat from uv_index where type exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="depth",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073909 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: depth, qc, unit, level
Sensor: air_quality | fields: unit, value, lat, reading
Task: Get lat from soil_moisture where depth exceeds the minimum depth from air_quality for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073910 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: reading, qc, value, lat
Sensor: sunlight | fields: lat, ts, value, depth
Task: Fetch value from rainfall where reading is greater than the total of depth in sunlight for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073911 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: lon, qc, depth, level
Sensor: snow_depth | fields: type, lon, ts, lat
Task: Get reading from visibility where unit appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073912 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: ts, value, type, lon
Sensor: sunlight | fields: qc, ts, value, lat
Task: Get lat from visibility where reading exceeds the average value from sunlight for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073913 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: value, qc, depth, reading
Sensor: humidity | fields: lon, unit, ts, type
Task: Get value from cloud_cover where reading exceeds the maximum reading from humidity for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073914 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: lat, ts, value, depth
Sensor: lightning | fields: lat, lon, ts, unit
Task: Get depth from drought_index where depth exceeds the maximum value from lightning for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073915 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: ts, value, reading, qc
Sensor: wind_speed | fields: type, level, value, qc
Task: Retrieve value from snow_depth that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073916 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: value, level, ts, type
Sensor: temperature | fields: lon, lat, level, ts
Task: Fetch lat from lightning where type exists in temperature sensor data for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073917 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: level, depth, ts, reading
Sensor: wind_speed | fields: level, qc, unit, lat
Task: Get level from drought_index where ts appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073918 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: qc, type, depth, value
Sensor: humidity | fields: depth, level, type, reading
Task: Fetch reading from uv_index where depth exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073919 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: qc, level, type, lon
Sensor: wind_speed | fields: type, reading, qc, value
Task: Retrieve depth from cloud_cover whose type is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073920 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: type, level, depth, unit
Sensor: pressure | fields: unit, level, qc, value
Task: Get reading from temperature where reading exceeds the average reading from pressure for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073921 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: level, lon, value, type
Sensor: soil_moisture | fields: lat, depth, ts, reading
Task: Fetch depth from drought_index where depth is greater than the maximum of depth in soil_moisture for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073922 | train |
v3 | Sensor network script:
Node: soil_moisture | code: clr | fields: unit, ts, depth, reading
Sensor: dew_point | fields: lat, lon, reading, type
Task: Get reading from soil_moisture where depth exceeds the total reading from dew_point for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073923 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: unit, lat, value, level
Sensor: turbidity | fields: lat, depth, qc, lon
Task: Retrieve lon from uv_index with value above the AVG(reading) of turbidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073924 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: reading, lat, qc, level
Sensor: sunlight | fields: lat, reading, value, ts
Task: Retrieve depth from evaporation with reading above the MAX(depth) of sunlight readings sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073925 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: value, lon, qc, type
Sensor: evaporation | fields: unit, type, ts, level
Task: Fetch level from wind_speed where unit exists in evaporation sensor data for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073926 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: reading, value, ts, unit
Sensor: sunlight | fields: reading, unit, level, lon
Task: Get lon from evaporation where a corresponding entry exists in sunlight with the same type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073927 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: depth, level, ts, unit
Sensor: visibility | fields: ts, lat, unit, lon
Task: Get depth from uv_index where depth appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073928 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: ts, value, type, lon
Sensor: pressure | fields: level, reading, value, lat
Task: Retrieve value from uv_index that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073929 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: reading, depth, qc, level
Sensor: wind_speed | fields: level, type, qc, reading
Task: Fetch depth from turbidity that have at least one corresponding wind_speed measurement for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "turbidity",
"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_073930 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: value, unit, lat, level
Sensor: drought_index | fields: lat, value, level, type
Task: Fetch lon from air_quality where depth is greater than the total of reading in drought_index for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073931 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: unit, ts, depth, value
Sensor: uv_index | fields: depth, unit, level, reading
Task: Get depth from visibility where qc appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073932 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: level, value, lon, unit
Sensor: wind_speed | fields: value, qc, lon, unit
Task: Retrieve lat from evaporation with reading above the COUNT(reading) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073933 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: level, lat, type, reading
Sensor: snow_depth | fields: unit, lon, type, value
Task: Get lon from humidity where a corresponding entry exists in snow_depth with the same unit.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073934 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: lat, ts, depth, unit
Sensor: drought_index | fields: lat, unit, type, depth
Task: Get lat from soil_moisture where value exceeds the maximum reading from drought_index for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073935 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: unit, lat, value, reading
Sensor: cloud_cover | fields: depth, qc, value, type
Task: Fetch value from wind_speed that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073936 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: level, lat, lon, reading
Sensor: soil_moisture | fields: lon, unit, ts, level
Task: Fetch reading from sunlight where ts exists in soil_moisture sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073937 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: lat, unit, qc, value
Sensor: soil_moisture | fields: reading, ts, lat, value
Task: Fetch lon from dew_point that have at least one corresponding soil_moisture measurement for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073938 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: ts, reading, lat, qc
Sensor: pressure | fields: unit, level, ts, value
Task: Fetch level from lightning that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073939 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: value, qc, type, reading
Sensor: uv_index | fields: level, value, lon, type
Task: Retrieve lat from visibility with reading above the COUNT(value) of uv_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"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_073940 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: qc, depth, ts, unit
Sensor: dew_point | fields: level, type, lat, value
Task: Fetch value from visibility that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073941 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: type, lat, depth, ts
Sensor: evaporation | fields: level, depth, unit, lat
Task: Fetch value from air_quality that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073942 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: unit, level, qc, depth
Sensor: wind_speed | fields: value, qc, depth, lat
Task: Get lat from humidity where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073943 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: depth, level, qc, lon
Sensor: turbidity | fields: depth, qc, reading, level
Task: Get value from visibility where a corresponding entry exists in turbidity with the same qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073944 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: unit, lat, type, ts
Sensor: humidity | fields: value, lat, level, lon
Task: Retrieve lon from frost that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073945 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: depth, level, ts, type
Sensor: temperature | fields: level, reading, qc, unit
Task: Fetch depth from turbidity that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073946 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: depth, lon, reading, ts
Sensor: dew_point | fields: depth, ts, reading, level
Task: Get lon from soil_moisture where depth exceeds the count of depth from dew_point for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073947 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: lat, type, reading, unit
Sensor: rainfall | fields: reading, level, unit, ts
Task: Fetch reading from evaporation where depth exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073948 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: depth, type, unit, lon
Sensor: humidity | fields: qc, ts, lat, lon
Task: Retrieve level from frost that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073949 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: reading, qc, value, ts
Sensor: sunlight | fields: lon, depth, lat, level
Task: Retrieve lon from evaporation with depth above the MAX(depth) of sunlight readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073950 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: lat, value, level, type
Sensor: wind_speed | fields: lat, level, depth, type
Task: Retrieve reading from drought_index whose unit is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073951 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: depth, lon, type, ts
Sensor: dew_point | fields: qc, depth, type, reading
Task: Retrieve depth from soil_moisture whose ts is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073952 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: unit, ts, depth, lat
Sensor: visibility | fields: type, reading, ts, lat
Task: Retrieve reading from cloud_cover with reading above the MIN(depth) of visibility readings sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073953 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: depth, type, lat, qc
Sensor: visibility | fields: value, depth, ts, qc
Task: Retrieve depth from evaporation that have at least one matching reading in visibility sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073954 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: depth, lon, ts, level
Sensor: soil_moisture | fields: value, reading, lon, unit
Task: Retrieve level from dew_point that have at least one matching reading in soil_moisture sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073955 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: level, depth, ts, qc
Sensor: rainfall | fields: level, reading, lon, type
Task: Fetch reading from uv_index where qc exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073956 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: qc, lat, unit, reading
Sensor: humidity | fields: lat, ts, unit, level
Task: Get reading from drought_index where type appears in humidity readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073957 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: lat, lon, qc, reading
Sensor: humidity | fields: lat, lon, ts, reading
Task: Get lon from evaporation where depth appears in humidity readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073958 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: type, lon, ts, lat
Sensor: uv_index | fields: level, ts, lat, reading
Task: Fetch lon from cloud_cover where depth exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073959 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: lat, lon, type, ts
Sensor: air_quality | fields: ts, lat, reading, level
Task: Fetch level from wind_speed where reading is greater than the total of value in air_quality for matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073960 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: lat, lon, unit, depth
Sensor: snow_depth | fields: lat, level, value, unit
Task: Retrieve lat from wind_speed whose unit is found in snow_depth records where qc matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073961 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: reading, lat, unit, level
Sensor: humidity | fields: type, reading, level, qc
Task: Retrieve depth from rainfall that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073962 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: qc, ts, lat, unit
Sensor: frost | fields: ts, type, unit, lat
Task: Fetch depth from lightning where unit exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073963 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: type, reading, depth, lon
Sensor: soil_moisture | fields: depth, type, reading, lat
Task: Get lat from temperature where value exceeds the maximum value from soil_moisture for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073964 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: level, lat, type, lon
Sensor: sunlight | fields: lon, value, unit, ts
Task: Fetch level from turbidity that have at least one corresponding sunlight measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073965 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: ts, level, value, qc
Sensor: visibility | fields: value, lon, reading, depth
Task: Retrieve lat from turbidity whose unit is found in visibility records where qc matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073966 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: ts, qc, depth, type
Sensor: sunlight | fields: qc, lon, reading, unit
Task: Fetch lon from snow_depth where depth is greater than the maximum of reading in sunlight for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073967 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: qc, lon, depth, ts
Sensor: soil_moisture | fields: type, value, qc, ts
Task: Get lat from humidity where value exceeds the minimum reading from soil_moisture for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073968 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: ts, unit, reading, value
Sensor: humidity | fields: type, ts, reading, unit
Task: Fetch lon from snow_depth where qc exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073969 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: qc, unit, level, lat
Sensor: uv_index | fields: reading, ts, depth, unit
Task: Fetch level from snow_depth where unit exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073970 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: qc, lat, type, value
Sensor: rainfall | fields: lon, type, depth, reading
Task: Retrieve level from pressure whose depth is found in rainfall records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073971 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: lat, level, ts, qc
Sensor: turbidity | fields: depth, unit, lat, value
Task: Get depth from lightning where a corresponding entry exists in turbidity with the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073972 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: depth, unit, reading, type
Sensor: frost | fields: level, type, ts, lon
Task: Fetch value from snow_depth where qc exists in frost sensor data for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="ts",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073973 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: ts, value, lon, reading
Sensor: turbidity | fields: type, level, value, unit
Task: Get lat from evaporation where a corresponding entry exists in turbidity with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073974 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: depth, level, type, value
Sensor: lightning | fields: qc, ts, lat, level
Task: Get reading from wind_speed where depth exceeds the average depth from lightning for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073975 | train |
v3 | Sensor network script:
Node: humidity | code: thr | fields: level, value, depth, reading
Sensor: sunlight | fields: lat, value, type, lon
Task: Fetch depth from humidity where depth is greater than the maximum of reading in sunlight for matching depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073976 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: value, unit, lat, ts
Sensor: drought_index | fields: depth, value, unit, lat
Task: Fetch reading from sunlight that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073977 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: value, level, type, reading
Sensor: snow_depth | fields: reading, unit, lon, type
Task: Retrieve value from drought_index that have at least one matching reading in snow_depth sharing the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="value",
) | {
"outer_table": "drought_index",
"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_073978 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: level, lon, ts, reading
Sensor: frost | fields: reading, value, ts, depth
Task: Fetch reading from air_quality where ts exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073979 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: depth, lon, unit, reading
Sensor: temperature | fields: depth, qc, reading, lat
Task: Retrieve level from cloud_cover whose depth is found in temperature records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="qc",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073980 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: lon, qc, unit, value
Sensor: frost | fields: type, ts, unit, depth
Task: Retrieve depth from humidity whose qc is found in frost records where qc matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="qc",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073981 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, type, lon, depth
Sensor: cloud_cover | fields: lon, ts, level, lat
Task: Get value from wind_speed where a corresponding entry exists in cloud_cover with the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073982 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: ts, depth, unit, level
Sensor: wind_speed | fields: value, qc, type, lon
Task: Fetch value from pressure that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073983 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: value, lat, type, depth
Sensor: soil_moisture | fields: lat, qc, level, type
Task: Fetch lon from lightning that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073984 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: lat, type, ts, level
Sensor: temperature | fields: lon, lat, level, depth
Task: Retrieve lon from humidity that have at least one matching reading in temperature sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073985 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: unit, depth, value, reading
Sensor: uv_index | fields: reading, value, ts, depth
Task: Retrieve lat from drought_index whose qc is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073986 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: qc, depth, value, lon
Sensor: cloud_cover | fields: qc, lat, unit, depth
Task: Get lat from wind_speed where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073987 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: reading, qc, depth, type
Sensor: rainfall | fields: unit, ts, level, reading
Task: Fetch level from air_quality that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073988 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: reading, type, lon, level
Sensor: visibility | fields: qc, reading, lon, ts
Task: Retrieve reading from drought_index that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073989 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: reading, type, lon, lat
Sensor: temperature | fields: reading, qc, depth, type
Task: Get level from lightning where a corresponding entry exists in temperature with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073990 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: type, lat, reading, value
Sensor: visibility | fields: value, level, ts, lon
Task: Retrieve lon from dew_point whose depth is found in visibility records where ts matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073991 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: lat, value, depth, reading
Sensor: visibility | fields: lon, ts, qc, level
Task: Get lat from humidity where type appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073992 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: reading, depth, lon, qc
Sensor: visibility | fields: value, type, level, ts
Task: Retrieve level from snow_depth with value above the MIN(value) of visibility readings sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073993 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: unit, reading, lon, lat
Sensor: evaporation | fields: unit, type, lat, depth
Task: Fetch lat from frost where value is greater than the average of depth in evaporation for matching depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073994 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: type, ts, level, reading
Sensor: uv_index | fields: level, depth, qc, lon
Task: Fetch lat from rainfall where depth exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073995 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: level, lat, depth, value
Sensor: dew_point | fields: lat, lon, level, qc
Task: Fetch reading from evaporation where ts exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073996 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: unit, qc, lat, lon
Sensor: cloud_cover | fields: lon, type, ts, value
Task: Get lon from evaporation where depth appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073997 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: unit, depth, qc, value
Sensor: visibility | fields: lon, reading, lat, level
Task: Get lat from evaporation where a corresponding entry exists in visibility with the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_073998 | train |
v2 | Sensor network script:
Node: drought_index | code: mst | fields: ts, depth, qc, reading
Sensor: turbidity | fields: level, depth, unit, reading
Task: Fetch level from drought_index that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_073999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.