Dataset Viewer
Auto-converted to Parquet Duplicate
variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: rainfall | code: ref | fields: ts, lon, type, lat Sensor: frost | fields: ts, value, type, unit Task: Fetch lat from rainfall where depth is greater than the maximum of value in frost for matching qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000000
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: reading, unit, level, lat Sensor: wind_speed | fields: level, qc, depth, value Task: Retrieve reading from soil_moisture that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000001
train
v1
Sensor network script: Node: frost | code: mst | fields: reading, ts, value, depth Sensor: humidity | fields: type, reading, level, value Task: Get depth from frost where type appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000002
train
v2
Sensor network script: Node: uv_index | code: hub | fields: level, value, unit, ts Sensor: snow_depth | fields: lat, unit, qc, ts Task: Get value from uv_index where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000003
train
v2
Sensor network script: Node: sunlight | code: hub | fields: reading, lat, type, ts Sensor: soil_moisture | fields: depth, lon, type, reading Task: Fetch depth from sunlight that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000004
train
v1
Sensor network script: Node: lightning | code: stn | fields: ts, type, lon, qc Sensor: cloud_cover | fields: type, qc, value, unit Task: Get reading from lightning where type appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000005
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: type, qc, level, unit Sensor: pressure | fields: level, type, depth, qc Task: Fetch value from cloud_cover that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000006
train
v1
Sensor network script: Node: sunlight | code: stn | fields: depth, reading, level, lat Sensor: visibility | fields: lat, depth, lon, reading Task: Get reading from sunlight where type appears in visibility readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000007
train
v3
Sensor network script: Node: evaporation | code: mst | fields: ts, value, qc, lat Sensor: sunlight | fields: unit, ts, level, qc Task: Get depth from evaporation where reading exceeds the total depth from sunlight for the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000008
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: depth, level, ts, reading Sensor: frost | fields: unit, level, ts, reading Task: Retrieve level from snow_depth with depth above the MAX(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000009
train
v1
Sensor network script: Node: frost | code: mst | fields: lon, lat, unit, reading Sensor: pressure | fields: ts, type, qc, unit Task: Fetch reading from frost where depth exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000010
train
v1
Sensor network script: Node: drought_index | code: clr | fields: qc, reading, unit, level Sensor: humidity | fields: level, lat, ts, type Task: Retrieve lon from drought_index whose unit is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000011
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: depth, ts, lat, reading Sensor: rainfall | fields: lon, ts, unit, lat Task: Fetch lat from soil_moisture where ts exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000012
train
v2
Sensor network script: Node: drought_index | code: hub | fields: lon, unit, qc, level Sensor: air_quality | fields: type, lon, reading, lat Task: Fetch lat from drought_index that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000013
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: ts, qc, level, reading Sensor: frost | fields: qc, value, lon, unit Task: Fetch lon from cloud_cover where value is greater than the average of reading in frost for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000014
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lon, lat, value, ts Sensor: cloud_cover | fields: unit, level, depth, qc Task: Retrieve level from wind_speed that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000015
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: lon, unit, ts, value Sensor: evaporation | fields: ts, lat, qc, reading Task: Get depth from snow_depth where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000016
train
v1
Sensor network script: Node: rainfall | code: mst | fields: unit, qc, depth, ts Sensor: visibility | fields: depth, level, reading, type Task: Retrieve lat from rainfall whose unit is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000017
train
v1
Sensor network script: Node: temperature | code: stn | fields: type, reading, depth, lon Sensor: turbidity | fields: ts, depth, type, lon Task: Retrieve reading from temperature whose unit is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000018
train
v2
Sensor network script: Node: dew_point | code: clr | fields: value, reading, depth, lon Sensor: cloud_cover | fields: depth, lon, lat, unit Task: Retrieve lon from dew_point that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000019
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lon, qc, lat, reading Sensor: frost | fields: lat, depth, qc, unit Task: Retrieve lat from air_quality whose depth is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000020
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, depth, ts, level Sensor: air_quality | fields: unit, depth, level, qc Task: Retrieve value from lightning whose qc is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000021
train
v1
Sensor network script: Node: temperature | code: prt | fields: lat, type, value, lon Sensor: visibility | fields: depth, lat, reading, lon Task: Retrieve value from temperature whose depth is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000022
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: depth, lat, lon, qc Sensor: drought_index | fields: qc, level, ts, type Task: Get reading from snow_depth where type appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000023
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: type, ts, lon, unit Sensor: sunlight | fields: type, unit, ts, value Task: Retrieve depth from soil_moisture that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000024
train
v2
Sensor network script: Node: evaporation | code: gst | fields: lon, lat, qc, depth Sensor: snow_depth | fields: qc, ts, depth, value Task: Fetch value from evaporation that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000025
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: value, level, depth, reading Sensor: rainfall | fields: unit, reading, lat, value Task: Get reading from soil_moisture where value exceeds the maximum reading from rainfall for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000026
train
v3
Sensor network script: Node: frost | code: clr | fields: lat, level, value, qc Sensor: evaporation | fields: unit, depth, value, lat Task: Retrieve lat from frost with value above the AVG(value) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000027
train
v2
Sensor network script: Node: temperature | code: gst | fields: depth, unit, ts, qc Sensor: uv_index | fields: lat, qc, unit, ts Task: Fetch lon from temperature that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000028
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: lon, lat, ts, depth Sensor: cloud_cover | fields: lat, qc, level, reading Task: Fetch value from soil_moisture where depth is greater than the average of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000029
train
v1
Sensor network script: Node: rainfall | code: stn | fields: unit, lon, type, qc Sensor: uv_index | fields: depth, lon, level, unit Task: Fetch value from rainfall where unit exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000030
train
v1
Sensor network script: Node: uv_index | code: prt | fields: lat, value, reading, lon Sensor: snow_depth | fields: qc, depth, ts, type Task: Fetch lon from uv_index where unit exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000031
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: unit, lon, ts, level Sensor: drought_index | fields: depth, qc, unit, reading Task: Get depth from snow_depth where unit appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000032
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: reading, qc, depth, type Sensor: pressure | fields: unit, type, value, depth Task: Get lon from soil_moisture where depth appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000033
train
v3
Sensor network script: Node: temperature | code: thr | fields: depth, unit, value, type Sensor: sunlight | fields: depth, value, lon, lat Task: Retrieve lat from temperature with value above the AVG(reading) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000034
train
v1
Sensor network script: Node: turbidity | code: mst | fields: ts, unit, reading, level Sensor: humidity | fields: lat, qc, lon, unit Task: Fetch value from turbidity where qc exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000035
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: level, ts, qc, value Sensor: sunlight | fields: qc, ts, lat, value Task: Get reading from snow_depth where depth exceeds the minimum depth from sunlight for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000036
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lon, level, depth, lat Sensor: snow_depth | fields: reading, qc, unit, type Task: Retrieve value from wind_speed that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000037
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: lon, level, depth, value Sensor: air_quality | fields: ts, qc, value, lon Task: Fetch level from snow_depth where depth exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000038
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: lat, type, ts, level Sensor: turbidity | fields: value, ts, lon, level Task: Get reading from wind_speed where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000039
train
v2
Sensor network script: Node: air_quality | code: stn | fields: ts, qc, depth, lat Sensor: frost | fields: level, ts, type, value Task: Retrieve lat from air_quality that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000040
train
v1
Sensor network script: Node: visibility | code: gst | fields: lon, ts, unit, depth Sensor: cloud_cover | fields: qc, level, lat, ts Task: Retrieve depth from visibility whose type is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000041
train
v1
Sensor network script: Node: turbidity | code: thr | fields: type, depth, reading, value Sensor: rainfall | fields: unit, type, reading, qc Task: Get level from turbidity where qc appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000042
train
v3
Sensor network script: Node: sunlight | code: stn | fields: unit, lat, value, level Sensor: turbidity | fields: lat, level, lon, type Task: Retrieve lat from sunlight with depth above the AVG(depth) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000043
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lon, depth, reading, level Sensor: snow_depth | fields: level, depth, type, ts Task: Retrieve lat from cloud_cover with depth above the MIN(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000044
train
v1
Sensor network script: Node: air_quality | code: stn | fields: qc, depth, ts, reading Sensor: rainfall | fields: unit, type, value, lon Task: Get level from air_quality where ts appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000045
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, value, depth, lon Sensor: lightning | fields: type, value, lon, level Task: Fetch reading from drought_index where value is greater than the total of reading in lightning for matching unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000046
train
v2
Sensor network script: Node: frost | code: thr | fields: type, ts, reading, value Sensor: wind_speed | fields: unit, reading, type, ts Task: Get lat from frost where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000047
train
v1
Sensor network script: Node: sunlight | code: mst | fields: level, lat, reading, unit Sensor: cloud_cover | fields: type, depth, ts, value Task: Fetch lon from sunlight where qc exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000048
train
v2
Sensor network script: Node: humidity | code: gst | fields: qc, value, lat, reading Sensor: uv_index | fields: level, depth, ts, lon Task: Fetch lat from humidity that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000049
train
v3
Sensor network script: Node: pressure | code: thr | fields: type, depth, lat, ts Sensor: lightning | fields: ts, unit, type, lon Task: Fetch level from pressure where depth is greater than the maximum of reading in lightning for matching unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "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_000050
train
v1
Sensor network script: Node: drought_index | code: gst | fields: lon, unit, value, reading Sensor: rainfall | fields: ts, lat, type, reading Task: Get depth from drought_index where qc appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000051
train
v3
Sensor network script: Node: drought_index | code: mst | fields: depth, lon, lat, reading Sensor: lightning | fields: value, lon, unit, qc Task: Get level from drought_index where value exceeds the total value from lightning for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000052
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, value, lon, level Sensor: turbidity | fields: lat, level, reading, ts Task: Fetch level from visibility that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "visibility", "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_000053
train
v1
Sensor network script: Node: visibility | code: mst | fields: lon, level, qc, type Sensor: snow_depth | fields: qc, value, reading, depth Task: Retrieve reading from visibility whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000054
train
v2
Sensor network script: Node: visibility | code: prt | fields: depth, unit, value, qc Sensor: evaporation | fields: lon, type, reading, lat Task: Retrieve lon from visibility that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000055
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: depth, ts, type, value Sensor: soil_moisture | fields: ts, value, type, depth Task: Fetch lat from snow_depth that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000056
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: type, unit, ts, level Sensor: turbidity | fields: lon, level, reading, ts Task: Retrieve level from cloud_cover whose unit is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000057
train
v1
Sensor network script: Node: pressure | code: thr | fields: lat, value, depth, level Sensor: uv_index | fields: level, unit, reading, value Task: Get reading from pressure where qc appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000058
train
v1
Sensor network script: Node: pressure | code: gst | fields: lon, value, unit, reading Sensor: temperature | fields: unit, level, type, reading Task: Fetch reading from pressure where unit exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000059
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: ts, level, value, depth Sensor: air_quality | fields: lat, lon, value, qc Task: Retrieve reading from wind_speed that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000060
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: qc, unit, ts, lat Sensor: visibility | fields: lon, ts, level, type Task: Get depth from wind_speed where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000061
train
v2
Sensor network script: Node: evaporation | code: prt | fields: unit, type, depth, ts Sensor: uv_index | fields: lat, ts, depth, qc Task: Get depth from evaporation where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000062
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, reading, value, lon Sensor: rainfall | fields: ts, type, lon, level Task: Retrieve reading from cloud_cover whose unit is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000063
train
v2
Sensor network script: Node: drought_index | code: mst | fields: depth, value, qc, level Sensor: dew_point | fields: qc, unit, depth, value Task: Fetch reading from drought_index that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000064
train
v3
Sensor network script: Node: drought_index | code: mst | fields: lat, ts, reading, depth Sensor: cloud_cover | fields: lat, depth, unit, ts Task: Retrieve reading from drought_index with value above the MIN(value) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000065
train
v2
Sensor network script: Node: frost | code: stn | fields: depth, lat, unit, reading Sensor: drought_index | fields: ts, value, unit, reading Task: Get lon from frost where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000066
train
v1
Sensor network script: Node: humidity | code: mst | fields: unit, qc, lat, level Sensor: rainfall | fields: lat, ts, value, level Task: Get level from humidity where unit appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000067
train
v3
Sensor network script: Node: humidity | code: prt | fields: unit, ts, lat, value Sensor: turbidity | fields: lon, depth, ts, qc Task: Retrieve value from humidity with reading above the AVG(reading) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000068
train
v1
Sensor network script: Node: evaporation | code: stn | fields: depth, qc, reading, lat Sensor: temperature | fields: ts, qc, unit, depth Task: Get reading from evaporation where depth appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000069
train
v2
Sensor network script: Node: turbidity | code: ref | fields: lat, type, unit, value Sensor: drought_index | fields: type, qc, level, value Task: Get lon from turbidity where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000070
train
v2
Sensor network script: Node: temperature | code: ref | fields: qc, value, lon, lat Sensor: drought_index | fields: type, level, ts, value Task: Fetch value from temperature that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000071
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: level, lon, type, ts Sensor: pressure | fields: reading, lon, depth, lat Task: Get level from snow_depth where reading exceeds the count of reading from pressure for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000072
train
v3
Sensor network script: Node: lightning | code: clr | fields: value, type, unit, reading Sensor: cloud_cover | fields: lon, type, unit, ts Task: Fetch reading from lightning where reading is greater than the total of value in cloud_cover for matching unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000073
train
v1
Sensor network script: Node: temperature | code: mst | fields: depth, lat, unit, type Sensor: humidity | fields: qc, lat, type, unit Task: Get lat from temperature where ts appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000074
train
v1
Sensor network script: Node: air_quality | code: thr | fields: value, lat, lon, qc Sensor: drought_index | fields: value, unit, level, type Task: Get value from air_quality where type appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000075
train
v2
Sensor network script: Node: humidity | code: stn | fields: qc, value, depth, level Sensor: temperature | fields: qc, value, reading, depth Task: Fetch depth from humidity that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000076
train
v2
Sensor network script: Node: evaporation | code: prt | fields: unit, lon, type, lat Sensor: turbidity | fields: ts, level, lon, qc Task: Get value from evaporation where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000077
train
v3
Sensor network script: Node: air_quality | code: mst | fields: value, ts, unit, lon Sensor: rainfall | fields: level, lat, lon, type Task: Fetch reading from air_quality where depth is greater than the maximum of depth in rainfall for matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000078
train
v2
Sensor network script: Node: uv_index | code: prt | fields: ts, qc, depth, unit Sensor: turbidity | fields: unit, lon, depth, ts Task: Fetch reading from uv_index that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000079
train
v1
Sensor network script: Node: turbidity | code: prt | fields: lat, reading, qc, value Sensor: wind_speed | fields: value, level, lon, depth Task: Fetch lat from turbidity where unit exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000080
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: reading, level, lon, ts Sensor: snow_depth | fields: unit, level, lat, value Task: Retrieve lon from cloud_cover whose type is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000081
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: ts, lon, value, unit Sensor: frost | fields: depth, lat, value, unit Task: Fetch value from cloud_cover where qc exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000082
train
v1
Sensor network script: Node: rainfall | code: prt | fields: lon, qc, unit, value Sensor: drought_index | fields: unit, type, value, lat Task: Get depth from rainfall where type appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000083
train
v1
Sensor network script: Node: rainfall | code: ref | fields: unit, depth, level, type Sensor: lightning | fields: lat, qc, lon, reading Task: Get reading from rainfall where unit appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000084
train
v2
Sensor network script: Node: drought_index | code: mst | fields: type, ts, value, lon Sensor: uv_index | fields: depth, lon, value, reading Task: Fetch depth from drought_index that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000085
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: reading, level, value, lon Sensor: rainfall | fields: depth, qc, level, ts Task: Retrieve value from snow_depth whose ts is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000086
train
v2
Sensor network script: Node: drought_index | code: stn | fields: type, level, value, depth Sensor: turbidity | fields: qc, level, unit, reading Task: Fetch reading from drought_index that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000087
train
v1
Sensor network script: Node: temperature | code: ref | fields: depth, type, lon, ts Sensor: pressure | fields: reading, type, lat, value Task: Retrieve value from temperature whose qc is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000088
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: reading, qc, level, lat Sensor: drought_index | fields: lat, unit, qc, lon Task: Fetch value from wind_speed where value is greater than the maximum of reading in drought_index for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000089
train
v1
Sensor network script: Node: turbidity | code: thr | fields: unit, qc, lon, value Sensor: drought_index | fields: value, unit, reading, lat Task: Fetch lat from turbidity where ts exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000090
train
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, qc, ts, depth Sensor: humidity | fields: level, reading, value, type Task: Retrieve level from dew_point with depth above the COUNT(value) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000091
train
v3
Sensor network script: Node: rainfall | code: mst | fields: value, type, level, lon Sensor: frost | fields: type, lat, reading, level Task: Get level from rainfall where value exceeds the average reading from frost for the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000092
train
v3
Sensor network script: Node: evaporation | code: hub | fields: ts, type, lon, level Sensor: snow_depth | fields: unit, level, qc, lat Task: Get reading from evaporation where reading exceeds the count of reading from snow_depth for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000093
train
v3
Sensor network script: Node: pressure | code: mst | fields: lat, value, unit, ts Sensor: visibility | fields: level, reading, unit, ts Task: Fetch reading from pressure where reading is greater than the count of of depth in visibility for matching ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000094
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: type, ts, lat, qc Sensor: sunlight | fields: lat, depth, unit, value Task: Get reading from soil_moisture where value exceeds the total value from sunlight for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000095
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, reading, value, level Sensor: air_quality | fields: unit, qc, depth, reading Task: Get reading from cloud_cover where unit appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000096
train
v2
Sensor network script: Node: lightning | code: mst | fields: level, reading, lat, value Sensor: rainfall | fields: qc, lon, level, reading Task: Fetch lon from lightning that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000097
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, value, lat, unit Sensor: lightning | fields: depth, unit, value, lat Task: Retrieve lat from dew_point that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_000098
train
v2
Sensor network script: Node: drought_index | code: hub | fields: depth, reading, lat, level Sensor: wind_speed | fields: level, value, ts, lat Task: Fetch reading from drought_index that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_000099
train
End of preview. Expand in Data Studio

No dataset card yet

Downloads last month
79