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: humidity | code: ref | fields: qc, ts, lat, depth Sensor: rainfall | fields: reading, unit, lon, depth Task: Get lon from humidity where depth exceeds the minimum reading from rainfall for the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069900
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: type, ts, reading, qc Sensor: evaporation | fields: depth, type, level, unit Task: Get level from snow_depth where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069901
train
v1
Sensor network script: Node: air_quality | code: clr | fields: lon, type, unit, value Sensor: rainfall | fields: depth, unit, qc, type Task: Retrieve value from air_quality whose qc is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069902
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: qc, value, level, unit Sensor: air_quality | fields: depth, reading, lon, unit Task: Fetch level from cloud_cover where depth is greater than the maximum of value in air_quality for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069903
train
v1
Sensor network script: Node: evaporation | code: thr | fields: value, depth, ts, reading Sensor: drought_index | fields: qc, lon, ts, type Task: Fetch reading from evaporation where type exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069904
train
v1
Sensor network script: Node: turbidity | code: gst | fields: qc, type, lon, level Sensor: soil_moisture | fields: reading, lon, value, level Task: Retrieve lat from turbidity whose ts is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069905
train
v1
Sensor network script: Node: visibility | code: ref | fields: lat, unit, lon, level Sensor: humidity | fields: lon, unit, level, depth Task: Fetch value from visibility where type exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069906
train
v3
Sensor network script: Node: uv_index | code: stn | fields: ts, depth, lat, type Sensor: snow_depth | fields: value, unit, qc, ts Task: Retrieve depth from uv_index with value above the COUNT(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069907
train
v2
Sensor network script: Node: sunlight | code: clr | fields: level, type, reading, depth Sensor: turbidity | fields: level, depth, lat, value Task: Fetch value from sunlight that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069908
train
v3
Sensor network script: Node: visibility | code: mst | fields: lat, type, depth, unit Sensor: rainfall | fields: level, qc, lon, unit Task: Retrieve reading from visibility with reading above the AVG(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069909
train
v3
Sensor network script: Node: lightning | code: stn | fields: type, qc, value, lat Sensor: wind_speed | fields: lon, value, level, reading Task: Retrieve reading from lightning with reading above the AVG(depth) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069910
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: lon, lat, qc, depth Sensor: evaporation | fields: ts, depth, value, level Task: Get lon from soil_moisture where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069911
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: value, lon, unit, qc Sensor: temperature | fields: reading, ts, value, type Task: Get depth from cloud_cover where reading exceeds the minimum depth from temperature for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069912
train
v2
Sensor network script: Node: drought_index | code: ref | fields: unit, type, qc, reading Sensor: pressure | fields: reading, ts, value, level Task: Retrieve reading from drought_index that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069913
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: lat, value, unit, type Sensor: evaporation | fields: unit, type, level, lat Task: Fetch lon from snow_depth where value is greater than the maximum of depth in evaporation for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069914
train
v1
Sensor network script: Node: drought_index | code: prt | fields: depth, value, lon, level Sensor: cloud_cover | fields: ts, lat, reading, unit Task: Retrieve lon from drought_index whose type is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069915
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lat, depth, unit, lon Sensor: temperature | fields: unit, lon, value, ts Task: Get value from cloud_cover where ts appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069916
train
v2
Sensor network script: Node: sunlight | code: hub | fields: lat, reading, level, type Sensor: temperature | fields: level, depth, value, reading Task: Get lon from sunlight where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069917
train
v3
Sensor network script: Node: humidity | code: hub | fields: qc, reading, lat, lon Sensor: turbidity | fields: lon, lat, depth, level Task: Retrieve level from humidity with depth above the MAX(reading) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069918
train
v1
Sensor network script: Node: air_quality | code: clr | fields: type, lon, depth, qc Sensor: temperature | fields: lat, value, unit, type Task: Fetch reading from air_quality where unit exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069919
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: value, depth, reading, type Sensor: rainfall | fields: ts, lat, depth, reading Task: Retrieve lat from wind_speed with value above the AVG(reading) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "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_069920
train
v3
Sensor network script: Node: visibility | code: mst | fields: value, depth, unit, reading Sensor: air_quality | fields: level, lon, unit, qc Task: Get lat from visibility where value exceeds the count of value from air_quality for the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069921
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: qc, type, lat, lon Sensor: evaporation | fields: type, qc, unit, ts Task: Fetch lon from snow_depth that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069922
train
v2
Sensor network script: Node: temperature | code: prt | fields: qc, depth, lat, type Sensor: wind_speed | fields: lon, depth, qc, lat Task: Get reading from temperature where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069923
train
v3
Sensor network script: Node: frost | code: stn | fields: depth, lon, level, ts Sensor: wind_speed | fields: type, level, qc, reading Task: Retrieve depth from frost with depth above the MAX(depth) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069924
train
v2
Sensor network script: Node: pressure | code: ref | fields: reading, level, lat, value Sensor: temperature | fields: qc, level, lon, type Task: Fetch value from pressure that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069925
train
v1
Sensor network script: Node: evaporation | code: stn | fields: ts, type, depth, reading Sensor: sunlight | fields: ts, reading, level, depth Task: Get depth from evaporation where ts appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069926
train
v3
Sensor network script: Node: visibility | code: prt | fields: depth, lon, unit, type Sensor: uv_index | fields: lat, reading, qc, level Task: Retrieve reading from visibility with value above the MIN(depth) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069927
train
v2
Sensor network script: Node: dew_point | code: gst | fields: value, reading, depth, lon Sensor: air_quality | fields: level, depth, ts, lat Task: Get depth from dew_point where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069928
train
v2
Sensor network script: Node: humidity | code: hub | fields: ts, depth, reading, value Sensor: frost | fields: lat, qc, type, unit Task: Fetch value from humidity that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069929
train
v2
Sensor network script: Node: turbidity | code: mst | fields: level, reading, unit, qc Sensor: cloud_cover | fields: lat, type, reading, level Task: Get depth from turbidity where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069930
train
v1
Sensor network script: Node: dew_point | code: gst | fields: qc, ts, lon, unit Sensor: air_quality | fields: unit, depth, ts, qc Task: Get lon from dew_point where qc appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069931
train
v3
Sensor network script: Node: visibility | code: prt | fields: level, value, qc, type Sensor: cloud_cover | fields: lon, ts, depth, type Task: Get lon from visibility where value exceeds the maximum reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069932
train
v2
Sensor network script: Node: air_quality | code: prt | fields: lon, lat, qc, value Sensor: soil_moisture | fields: ts, depth, lon, lat Task: Fetch lon from air_quality that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069933
train
v2
Sensor network script: Node: air_quality | code: thr | fields: reading, depth, unit, qc Sensor: humidity | fields: qc, reading, value, lon Task: Get depth from air_quality where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069934
train
v1
Sensor network script: Node: temperature | code: hub | fields: qc, reading, level, depth Sensor: dew_point | fields: depth, unit, type, qc Task: Fetch depth from temperature where ts exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069935
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: level, value, lon, type Sensor: sunlight | fields: reading, depth, qc, unit Task: Get reading from snow_depth where type appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069936
train
v1
Sensor network script: Node: evaporation | code: ref | fields: level, qc, value, lat Sensor: humidity | fields: value, lon, lat, depth Task: Get lon from evaporation where unit appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069937
train
v2
Sensor network script: Node: humidity | code: thr | fields: unit, ts, lon, qc Sensor: drought_index | fields: unit, reading, type, value Task: Fetch lat from humidity that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069938
train
v2
Sensor network script: Node: uv_index | code: clr | fields: value, level, lon, lat Sensor: drought_index | fields: lat, type, unit, reading Task: Get lon from uv_index where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069939
train
v3
Sensor network script: Node: visibility | code: ref | fields: reading, type, qc, unit Sensor: uv_index | fields: level, unit, qc, lat Task: Get lon from visibility where reading exceeds the count of reading from uv_index for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069940
train
v1
Sensor network script: Node: temperature | code: gst | fields: qc, type, lon, reading Sensor: frost | fields: lat, value, qc, depth Task: Fetch reading from temperature where qc exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069941
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: unit, value, reading, lat Sensor: rainfall | fields: qc, value, unit, level Task: Fetch depth from snow_depth where value is greater than the total of depth in rainfall for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069942
train
v3
Sensor network script: Node: evaporation | code: clr | fields: value, level, ts, depth Sensor: cloud_cover | fields: unit, depth, lon, reading Task: Get level from evaporation where reading exceeds the minimum reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069943
train
v3
Sensor network script: Node: evaporation | code: mst | fields: depth, lon, level, qc Sensor: pressure | fields: unit, depth, value, lon Task: Retrieve lon from evaporation with reading above the MAX(depth) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069944
train
v3
Sensor network script: Node: turbidity | code: mst | fields: unit, value, depth, reading Sensor: air_quality | fields: depth, value, unit, type Task: Get reading from turbidity where value exceeds the average depth from air_quality for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069945
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: value, depth, qc, level Sensor: humidity | fields: level, qc, depth, type Task: Get lat from cloud_cover where type appears in humidity readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069946
train
v2
Sensor network script: Node: visibility | code: stn | fields: lon, ts, reading, unit Sensor: cloud_cover | fields: level, lon, unit, ts Task: Retrieve lat from visibility that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069947
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: lat, ts, reading, qc Sensor: visibility | fields: level, value, reading, lat Task: Fetch lat from cloud_cover where value is greater than the minimum of value in visibility for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069948
train
v1
Sensor network script: Node: dew_point | code: stn | fields: value, qc, depth, ts Sensor: snow_depth | fields: ts, lat, type, value Task: Retrieve level from dew_point whose ts is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069949
train
v2
Sensor network script: Node: visibility | code: mst | fields: qc, lon, value, type Sensor: lightning | fields: reading, value, type, ts Task: Fetch value from visibility that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069950
train
v2
Sensor network script: Node: sunlight | code: gst | fields: lat, depth, level, unit Sensor: dew_point | fields: level, lat, ts, reading Task: Retrieve level from sunlight that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069951
train
v3
Sensor network script: Node: rainfall | code: clr | fields: depth, unit, level, value Sensor: evaporation | fields: unit, level, type, value Task: Fetch lat from rainfall where depth is greater than the maximum of value in evaporation for matching ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069952
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: reading, value, unit, depth Sensor: dew_point | fields: qc, level, type, depth Task: Get lon from cloud_cover where depth appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069953
train
v2
Sensor network script: Node: dew_point | code: mst | fields: lat, level, unit, reading Sensor: air_quality | fields: type, value, reading, lat Task: Retrieve level from dew_point that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069954
train
v2
Sensor network script: Node: turbidity | code: mst | fields: type, depth, lat, lon Sensor: air_quality | fields: type, ts, qc, depth Task: Retrieve reading from turbidity that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069955
train
v1
Sensor network script: Node: lightning | code: stn | fields: type, depth, unit, lon Sensor: cloud_cover | fields: type, lat, lon, level Task: Retrieve lat from lightning whose type is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069956
train
v2
Sensor network script: Node: lightning | code: hub | fields: lon, value, lat, unit Sensor: visibility | fields: depth, ts, value, qc Task: Fetch value from lightning that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069957
train
v3
Sensor network script: Node: lightning | code: ref | fields: value, lat, reading, depth Sensor: uv_index | fields: level, lat, qc, depth Task: Get lat from lightning where value exceeds the maximum depth from uv_index for the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069958
train
v3
Sensor network script: Node: dew_point | code: ref | fields: level, ts, lat, lon Sensor: drought_index | fields: level, depth, qc, unit Task: Fetch reading from dew_point where value is greater than the maximum of value in drought_index for matching ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069959
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: value, level, reading, qc Sensor: humidity | fields: value, ts, qc, type Task: Retrieve depth from cloud_cover whose qc is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069960
train
v1
Sensor network script: Node: evaporation | code: gst | fields: type, lon, unit, level Sensor: humidity | fields: ts, reading, depth, lat Task: Fetch level from evaporation where type exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069961
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: qc, value, lon, level Sensor: soil_moisture | fields: ts, level, lat, reading Task: Retrieve level from cloud_cover with depth above the SUM(reading) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069962
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: lat, ts, reading, lon Sensor: humidity | fields: depth, level, qc, lat Task: Fetch lon from cloud_cover that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069963
train
v2
Sensor network script: Node: turbidity | code: stn | fields: level, lat, type, reading Sensor: rainfall | fields: ts, unit, type, lon Task: Fetch level from turbidity that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069964
train
v2
Sensor network script: Node: visibility | code: thr | fields: unit, qc, lat, level Sensor: dew_point | fields: qc, ts, level, type Task: Retrieve depth from visibility that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069965
train
v3
Sensor network script: Node: temperature | code: ref | fields: lat, depth, ts, value Sensor: uv_index | fields: lon, reading, unit, lat Task: Get value from temperature where reading exceeds the maximum value from uv_index for the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069966
train
v3
Sensor network script: Node: air_quality | code: mst | fields: lat, lon, depth, type Sensor: wind_speed | fields: reading, qc, ts, depth Task: Retrieve lon from air_quality with value above the MAX(depth) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069967
train
v1
Sensor network script: Node: dew_point | code: stn | fields: reading, depth, type, lat Sensor: turbidity | fields: unit, reading, lat, type Task: Get level from dew_point where ts appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069968
train
v2
Sensor network script: Node: temperature | code: mst | fields: reading, level, unit, lat Sensor: visibility | fields: lon, qc, unit, type Task: Get depth from temperature where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069969
train
v1
Sensor network script: Node: sunlight | code: mst | fields: value, lon, type, qc Sensor: evaporation | fields: type, value, depth, qc Task: Get depth from sunlight where depth appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069970
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, lat, unit, reading Sensor: wind_speed | fields: value, level, type, ts Task: Retrieve lon from visibility that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069971
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: lat, qc, lon, type Sensor: temperature | fields: reading, unit, type, value Task: Get reading from snow_depth where ts appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069972
train
v3
Sensor network script: Node: dew_point | code: prt | fields: qc, type, unit, level Sensor: pressure | fields: level, reading, value, lon Task: Retrieve depth from dew_point with reading above the MIN(reading) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069973
train
v1
Sensor network script: Node: temperature | code: hub | fields: unit, qc, reading, type Sensor: rainfall | fields: unit, ts, value, level Task: Retrieve depth from temperature whose qc is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069974
train
v2
Sensor network script: Node: drought_index | code: mst | fields: type, unit, depth, value Sensor: dew_point | fields: reading, value, depth, qc Task: Fetch value from drought_index that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069975
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: type, lat, reading, level Sensor: uv_index | fields: ts, depth, level, unit Task: Retrieve depth from wind_speed whose unit is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069976
train
v2
Sensor network script: Node: turbidity | code: gst | fields: level, reading, ts, value Sensor: soil_moisture | fields: unit, reading, qc, lat Task: Retrieve level from turbidity that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069977
train
v1
Sensor network script: Node: air_quality | code: hub | fields: depth, lon, reading, value Sensor: cloud_cover | fields: ts, qc, lon, depth Task: Get lon from air_quality where unit appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069978
train
v2
Sensor network script: Node: rainfall | code: ref | fields: unit, lat, qc, depth Sensor: turbidity | fields: reading, depth, lon, lat Task: Retrieve value from rainfall that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069979
train
v3
Sensor network script: Node: turbidity | code: prt | fields: level, depth, type, lat Sensor: pressure | fields: depth, lon, value, ts Task: Retrieve depth from turbidity with depth above the MIN(value) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069980
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: depth, reading, value, level Sensor: frost | fields: qc, lat, unit, level Task: Fetch depth from soil_moisture that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069981
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, unit, reading, value Sensor: lightning | fields: reading, type, qc, level Task: Retrieve reading from visibility whose qc is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069982
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: depth, ts, qc, type Sensor: turbidity | fields: unit, lat, level, reading Task: Get value from soil_moisture where type appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069983
train
v3
Sensor network script: Node: temperature | code: hub | fields: ts, qc, type, level Sensor: visibility | fields: level, unit, lat, type Task: Retrieve value from temperature with depth above the SUM(value) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069984
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: depth, value, ts, type Sensor: frost | fields: value, reading, type, ts Task: Fetch value from wind_speed where type exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069985
train
v3
Sensor network script: Node: dew_point | code: hub | fields: reading, value, qc, type Sensor: snow_depth | fields: lon, depth, unit, lat Task: Fetch lon from dew_point where reading is greater than the average of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069986
train
v3
Sensor network script: Node: pressure | code: hub | fields: depth, type, value, lat Sensor: temperature | fields: type, value, level, unit Task: Get level from pressure where reading exceeds the minimum depth from temperature for the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069987
train
v1
Sensor network script: Node: dew_point | code: ref | fields: qc, lat, reading, lon Sensor: sunlight | fields: unit, qc, level, type Task: Fetch depth from dew_point where ts exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069988
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: lat, type, unit, qc Sensor: sunlight | fields: level, value, qc, ts Task: Get reading from cloud_cover where value exceeds the average value from sunlight for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069989
train
v3
Sensor network script: Node: rainfall | code: hub | fields: unit, lat, value, qc Sensor: wind_speed | fields: value, reading, type, lat Task: Get lon from rainfall where value exceeds the minimum depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069990
train
v3
Sensor network script: Node: humidity | code: gst | fields: ts, lat, type, depth Sensor: cloud_cover | fields: value, reading, ts, lon Task: Retrieve lat from humidity with depth above the COUNT(depth) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069991
train
v3
Sensor network script: Node: dew_point | code: ref | fields: lat, lon, reading, unit Sensor: wind_speed | fields: value, lat, depth, lon Task: Retrieve value from dew_point with value above the COUNT(depth) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069992
train
v1
Sensor network script: Node: drought_index | code: prt | fields: lon, level, depth, unit Sensor: turbidity | fields: lat, qc, unit, lon Task: Fetch depth from drought_index where depth exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069993
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, unit, type, level Sensor: snow_depth | fields: lon, reading, ts, depth Task: Retrieve value from soil_moisture that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069994
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: lat, ts, reading, depth Sensor: cloud_cover | fields: unit, reading, qc, lon Task: Fetch depth from wind_speed where reading is greater than the minimum of reading in cloud_cover for matching type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069995
train
v2
Sensor network script: Node: frost | code: clr | fields: unit, qc, value, level Sensor: wind_speed | fields: qc, lat, type, level Task: Fetch lat from frost that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069996
train
v2
Sensor network script: Node: temperature | code: prt | fields: qc, reading, lat, value Sensor: frost | fields: unit, qc, depth, ts Task: Fetch level from temperature that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069997
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lat, level, value, unit Sensor: temperature | fields: reading, depth, type, unit Task: Retrieve lat from cloud_cover that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069998
train
v3
Sensor network script: Node: frost | code: mst | fields: value, reading, ts, type Sensor: rainfall | fields: qc, reading, value, ts Task: Get level from frost where value exceeds the total depth from rainfall for the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069999
train