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: stn | fields: lat, lon, unit, value
Sensor: uv_index | fields: lon, lat, ts, reading
Task: Retrieve reading from drought_index that have at least one matching reading in uv_index sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079300 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: lon, qc, level, reading
Sensor: humidity | fields: value, reading, depth, lon
Task: Retrieve lat from evaporation with reading above the SUM(reading) of humidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079301 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: qc, level, depth, value
Sensor: temperature | fields: type, unit, depth, lon
Task: Fetch level from cloud_cover that have at least one corresponding temperature measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079302 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: qc, level, depth, lat
Sensor: visibility | fields: type, lon, unit, reading
Task: Retrieve reading from cloud_cover whose unit is found in visibility records where depth matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079303 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: level, value, unit, qc
Sensor: visibility | fields: unit, depth, lon, ts
Task: Fetch depth from dew_point where reading is greater than the maximum of depth in visibility for matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079304 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: lat, ts, unit, depth
Sensor: evaporation | fields: qc, unit, ts, depth
Task: Fetch level from frost where reading is greater than the total of value in evaporation for matching qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079305 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: depth, ts, lon, level
Sensor: evaporation | fields: level, unit, depth, lon
Task: Fetch level from turbidity that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079306 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: lat, reading, value, depth
Sensor: soil_moisture | fields: qc, type, ts, reading
Task: Retrieve reading from turbidity that have at least one matching reading in soil_moisture sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079307 | train |
v3 | Sensor network script:
Node: evaporation | code: hub | fields: unit, value, type, ts
Sensor: wind_speed | fields: level, type, depth, qc
Task: Get level from evaporation where depth exceeds the count of depth from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079308 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: level, value, lon, ts
Sensor: drought_index | fields: level, type, unit, qc
Task: Fetch reading from air_quality that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079309 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: type, reading, ts, depth
Sensor: drought_index | fields: unit, ts, value, level
Task: Get lat from snow_depth where value exceeds the minimum reading from drought_index for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"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_079310 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: depth, type, lat, lon
Sensor: frost | fields: qc, ts, depth, value
Task: Get lon from cloud_cover where reading exceeds the total depth from frost for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079311 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: value, ts, unit, lat
Sensor: turbidity | fields: reading, ts, depth, lat
Task: Retrieve value from evaporation whose type is found in turbidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079312 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: ts, depth, level, lon
Sensor: rainfall | fields: depth, lat, unit, level
Task: Retrieve depth from frost with depth above the MAX(reading) of rainfall readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079313 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: depth, level, value, lon
Sensor: turbidity | fields: ts, unit, lat, reading
Task: Fetch value from pressure where reading is greater than the count of of value in turbidity for matching qc.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079314 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: depth, lat, level, ts
Sensor: turbidity | fields: qc, reading, depth, level
Task: Get level from sunlight where a corresponding entry exists in turbidity with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079315 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: value, reading, qc, lon
Sensor: humidity | fields: type, unit, value, lon
Task: Retrieve depth from drought_index whose type is found in humidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079316 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: reading, unit, ts, level
Sensor: drought_index | fields: unit, level, value, depth
Task: Retrieve value from rainfall whose unit is found in drought_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="type",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079317 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: level, type, unit, lat
Sensor: visibility | fields: reading, ts, lat, unit
Task: Retrieve reading from snow_depth with depth above the MIN(reading) of visibility readings sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079318 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: qc, type, unit, lat
Sensor: drought_index | fields: unit, value, ts, type
Task: Fetch level from visibility where reading is greater than the total of value in drought_index for matching ts.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079319 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: depth, unit, reading, type
Sensor: dew_point | fields: unit, level, type, value
Task: Fetch lat from snow_depth that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079320 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: ts, level, type, lat
Sensor: soil_moisture | fields: depth, unit, ts, level
Task: Get reading from humidity where ts appears in soil_moisture readings with matching ts.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079321 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: lon, ts, unit, value
Sensor: rainfall | fields: level, reading, type, qc
Task: Fetch reading from wind_speed where reading is greater than the minimum of depth in rainfall for matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079322 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: reading, unit, lat, level
Sensor: snow_depth | fields: reading, unit, type, lat
Task: Fetch value from uv_index that have at least one corresponding snow_depth measurement for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079323 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: value, type, reading, level
Sensor: snow_depth | fields: reading, qc, lat, type
Task: Retrieve lon from wind_speed whose qc is found in snow_depth records where type matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079324 | train |
v2 | Sensor network script:
Node: snow_depth | code: ref | fields: ts, qc, reading, unit
Sensor: frost | fields: lon, unit, lat, reading
Task: Get lat from snow_depth where a corresponding entry exists in frost with the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079325 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: qc, lon, value, level
Sensor: soil_moisture | fields: depth, lon, qc, unit
Task: Retrieve value from pressure whose unit is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079326 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: type, unit, qc, lon
Sensor: air_quality | fields: reading, unit, depth, level
Task: Retrieve lat from frost that have at least one matching reading in air_quality sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079327 | train |
v3 | Sensor network script:
Node: rainfall | code: ref | fields: unit, value, lon, reading
Sensor: sunlight | fields: type, lon, qc, reading
Task: Fetch lon from rainfall where reading is greater than the average of value in sunlight for matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079328 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: depth, lon, ts, qc
Sensor: temperature | fields: level, unit, qc, type
Task: Fetch reading from rainfall that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"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_079329 | train |
v3 | Sensor network script:
Node: snow_depth | code: prt | fields: value, lat, level, ts
Sensor: lightning | fields: qc, level, reading, lat
Task: Get level from snow_depth where depth exceeds the count of reading from lightning for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079330 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: unit, value, reading, depth
Sensor: drought_index | fields: level, lon, lat, ts
Task: Get level from pressure where value exceeds the total reading from drought_index for the same type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079331 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: lon, level, reading, depth
Sensor: dew_point | fields: level, depth, value, ts
Task: Fetch lon from sunlight that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079332 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: level, depth, ts, lat
Sensor: uv_index | fields: type, qc, lon, lat
Task: Retrieve lon from wind_speed that have at least one matching reading in uv_index sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079333 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: lat, unit, lon, qc
Sensor: humidity | fields: type, lon, level, value
Task: Get reading from temperature where qc appears in humidity readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079334 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: depth, lon, level, type
Sensor: sunlight | fields: unit, ts, value, lon
Task: Get level from visibility where ts appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079335 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: lat, ts, reading, depth
Sensor: turbidity | fields: level, reading, value, lon
Task: Get value from dew_point where unit appears in turbidity readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079336 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: lon, level, value, reading
Sensor: turbidity | fields: ts, value, type, depth
Task: Fetch lon from evaporation where unit exists in turbidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079337 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: level, lon, reading, depth
Sensor: rainfall | fields: reading, type, value, depth
Task: Retrieve reading from cloud_cover whose ts is found in rainfall records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079338 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, ts, level, value
Sensor: drought_index | fields: level, ts, type, qc
Task: Retrieve value from snow_depth whose depth is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079339 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: reading, value, level, type
Sensor: wind_speed | fields: unit, value, lat, type
Task: Get lat from rainfall where qc appears in wind_speed readings with matching type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079340 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: ts, depth, qc, type
Sensor: uv_index | fields: level, lat, qc, value
Task: Fetch reading from rainfall that have at least one corresponding uv_index measurement for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079341 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: ts, value, type, reading
Sensor: visibility | fields: level, depth, unit, lat
Task: Retrieve value from temperature with value above the AVG(value) of visibility readings sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079342 | train |
v2 | Sensor network script:
Node: frost | code: gst | fields: type, value, qc, depth
Sensor: rainfall | fields: lat, qc, depth, type
Task: Get lon from frost where a corresponding entry exists in rainfall with the same qc.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079343 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: lat, depth, unit, lon
Sensor: drought_index | fields: depth, type, lon, ts
Task: Get lat from rainfall where a corresponding entry exists in drought_index with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079344 | train |
v1 | Sensor network script:
Node: dew_point | code: mst | fields: unit, qc, ts, lat
Sensor: drought_index | fields: reading, value, lon, lat
Task: Fetch lon from dew_point where qc exists in drought_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079345 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: level, unit, lat, qc
Sensor: visibility | fields: lat, level, reading, unit
Task: Get lon from snow_depth where a corresponding entry exists in visibility with the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079346 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: level, lon, reading, ts
Sensor: wind_speed | fields: reading, unit, level, lon
Task: Fetch reading from evaporation where type exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079347 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: level, lat, qc, lon
Sensor: soil_moisture | fields: reading, qc, lat, value
Task: Retrieve depth from uv_index with value above the AVG(value) of soil_moisture readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079348 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: lat, ts, qc, lon
Sensor: temperature | fields: value, unit, reading, ts
Task: Get reading from frost where a corresponding entry exists in temperature with the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079349 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: depth, value, level, unit
Sensor: dew_point | fields: reading, value, level, lat
Task: Fetch level from wind_speed that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079350 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: depth, type, lon, qc
Sensor: rainfall | fields: lat, level, qc, depth
Task: Get value from pressure where a corresponding entry exists in rainfall with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079351 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: lon, qc, type, ts
Sensor: drought_index | fields: ts, reading, qc, unit
Task: Fetch lon from evaporation that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079352 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: reading, lon, qc, unit
Sensor: humidity | fields: ts, level, value, lat
Task: Retrieve level from uv_index with reading above the MAX(reading) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079353 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: value, qc, lat, type
Sensor: snow_depth | fields: qc, type, lon, ts
Task: Get level from humidity where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079354 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: type, qc, unit, reading
Sensor: snow_depth | fields: qc, type, reading, lon
Task: Retrieve level from drought_index that have at least one matching reading in snow_depth sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079355 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: ts, level, reading, qc
Sensor: snow_depth | fields: reading, unit, lon, level
Task: Fetch reading from cloud_cover that have at least one corresponding snow_depth measurement for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079356 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: unit, level, qc, depth
Sensor: visibility | fields: qc, type, unit, ts
Task: Fetch value from air_quality where depth exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079357 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: reading, type, level, depth
Sensor: cloud_cover | fields: type, value, lon, depth
Task: Get value from rainfall where depth appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079358 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: ts, qc, lat, type
Sensor: dew_point | fields: reading, unit, qc, value
Task: Fetch reading from visibility that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079359 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: ts, type, depth, reading
Sensor: soil_moisture | fields: value, type, level, ts
Task: Fetch lat from turbidity that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079360 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: depth, qc, lat, type
Sensor: visibility | fields: type, unit, ts, level
Task: Get depth from lightning where qc appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079361 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: unit, value, qc, lon
Sensor: drought_index | fields: reading, ts, level, lat
Task: Fetch reading from rainfall where reading is greater than the count of of depth in drought_index for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079362 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: type, lat, unit, value
Sensor: evaporation | fields: value, depth, level, reading
Task: Get level from drought_index where depth appears in evaporation readings with matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079363 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: lon, value, lat, depth
Sensor: rainfall | fields: type, ts, level, value
Task: Fetch depth from soil_moisture that have at least one corresponding rainfall measurement for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079364 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: level, depth, unit, ts
Sensor: humidity | fields: type, reading, lon, qc
Task: Get value from pressure where type appears in humidity readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079365 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: unit, reading, ts, qc
Sensor: rainfall | fields: value, ts, qc, level
Task: Get level from visibility where qc appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079366 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: unit, depth, type, ts
Sensor: humidity | fields: value, depth, ts, lat
Task: Retrieve lat from wind_speed with value above the MIN(reading) of humidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
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": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079367 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: lon, unit, type, ts
Sensor: sunlight | fields: level, qc, ts, unit
Task: Retrieve lat from evaporation with reading above the COUNT(depth) of sunlight readings sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079368 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: reading, lat, lon, type
Sensor: uv_index | fields: value, level, qc, lat
Task: Get lat from lightning where a corresponding entry exists in uv_index with the same ts.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079369 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: unit, value, lat, ts
Sensor: air_quality | fields: lat, lon, qc, value
Task: Get reading from pressure where depth appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079370 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: ts, lat, unit, type
Sensor: soil_moisture | fields: reading, lon, level, ts
Task: Fetch reading from sunlight that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079371 | train |
v2 | Sensor network script:
Node: evaporation | code: hub | fields: reading, unit, level, lat
Sensor: rainfall | fields: reading, depth, qc, lon
Task: Retrieve reading from evaporation that have at least one matching reading in rainfall sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079372 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: ts, level, value, qc
Sensor: frost | fields: value, reading, type, level
Task: Fetch depth from wind_speed where qc exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079373 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: reading, type, level, depth
Sensor: visibility | fields: value, level, type, ts
Task: Retrieve level from cloud_cover with depth above the SUM(depth) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079374 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: ts, lon, depth, type
Sensor: uv_index | fields: depth, ts, qc, type
Task: Fetch depth from drought_index where depth exists in uv_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079375 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: lat, level, depth, lon
Sensor: temperature | fields: lat, qc, ts, depth
Task: Get depth from pressure where depth appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="qc",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079376 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: ts, lon, qc, unit
Sensor: drought_index | fields: reading, unit, type, ts
Task: Get level from humidity where reading exceeds the minimum depth from drought_index for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079377 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: reading, depth, lat, qc
Sensor: snow_depth | fields: reading, type, ts, qc
Task: Fetch value from sunlight that have at least one corresponding snow_depth measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"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_079378 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: lon, qc, depth, unit
Sensor: snow_depth | fields: depth, unit, level, qc
Task: Fetch depth from turbidity that have at least one corresponding snow_depth measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079379 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: level, unit, ts, lon
Sensor: cloud_cover | fields: lat, type, reading, depth
Task: Get value from dew_point where a corresponding entry exists in cloud_cover with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079380 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: qc, value, ts, level
Sensor: cloud_cover | fields: lon, unit, lat, qc
Task: Get depth from visibility where reading exceeds the minimum reading from cloud_cover for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079381 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: value, level, depth, lon
Sensor: dew_point | fields: lat, unit, reading, ts
Task: Fetch level from evaporation that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079382 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: unit, lat, level, qc
Sensor: uv_index | fields: lon, value, unit, qc
Task: Fetch depth from temperature that have at least one corresponding uv_index measurement for the same type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079383 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: unit, level, ts, qc
Sensor: soil_moisture | fields: unit, qc, type, reading
Task: Retrieve lat from wind_speed whose depth is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079384 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: level, lat, ts, value
Sensor: evaporation | fields: type, reading, ts, lon
Task: Get lat from humidity where a corresponding entry exists in evaporation with the same ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079385 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: lon, type, level, depth
Sensor: sunlight | fields: depth, unit, lat, level
Task: Fetch lat from humidity where unit exists in sunlight sensor data for the same type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079386 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: unit, value, depth, reading
Sensor: uv_index | fields: value, qc, lon, unit
Task: Fetch lon from wind_speed that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079387 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: level, depth, lat, type
Sensor: air_quality | fields: lon, value, reading, qc
Task: Get depth from soil_moisture where type appears in air_quality readings with matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079388 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: lon, depth, lat, value
Sensor: drought_index | fields: qc, ts, lat, unit
Task: Get value from soil_moisture where a corresponding entry exists in drought_index with the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079389 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: value, unit, level, depth
Sensor: evaporation | fields: lon, type, lat, depth
Task: Get reading from humidity where type appears in evaporation readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079390 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: type, depth, lat, value
Sensor: evaporation | fields: level, reading, value, unit
Task: Fetch depth from rainfall that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079391 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: lat, lon, depth, level
Sensor: evaporation | fields: lon, type, qc, depth
Task: Fetch level from soil_moisture that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079392 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: type, reading, qc, depth
Sensor: rainfall | fields: lon, level, qc, unit
Task: Retrieve value from pressure with value above the COUNT(value) of rainfall readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079393 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: unit, qc, lon, type
Sensor: lightning | fields: level, reading, lat, ts
Task: Retrieve depth from evaporation with depth above the COUNT(reading) of lightning readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079394 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: type, depth, ts, value
Sensor: lightning | fields: qc, type, level, ts
Task: Retrieve lon from temperature whose unit is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079395 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: lon, lat, unit, reading
Sensor: drought_index | fields: depth, lon, level, unit
Task: Get depth from evaporation where type appears in drought_index readings with matching type.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="type",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079396 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: depth, level, unit, type
Sensor: sunlight | fields: type, unit, lon, level
Task: Retrieve lon from rainfall that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079397 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: type, reading, unit, lon
Sensor: sunlight | fields: depth, ts, type, lat
Task: Retrieve depth from air_quality that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079398 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: reading, level, lat, qc
Sensor: uv_index | fields: value, lon, type, level
Task: Retrieve lat from dew_point that have at least one matching reading in uv_index sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079399 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.