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: sunlight | code: stn | fields: lon, type, level, qc Sensor: wind_speed | fields: level, type, value, unit Task: Get depth from sunlight where depth exceeds the minimum reading from wind_speed for the same qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014900
train
v3
Sensor network script: Node: air_quality | code: mst | fields: value, level, unit, reading Sensor: temperature | fields: qc, type, value, lon Task: Get value from air_quality where reading exceeds the count of depth from temperature for the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014901
train
v2
Sensor network script: Node: frost | code: gst | fields: level, qc, ts, reading Sensor: sunlight | fields: ts, type, qc, unit Task: Retrieve depth from frost that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014902
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: qc, depth, unit, value Sensor: visibility | fields: ts, value, qc, level Task: Fetch lon from soil_moisture where reading is greater than the maximum of value in visibility for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014903
train
v2
Sensor network script: Node: temperature | code: thr | fields: reading, ts, qc, lon Sensor: humidity | fields: ts, unit, type, level Task: Get lat from temperature where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014904
train
v3
Sensor network script: Node: drought_index | code: ref | fields: value, lon, qc, type Sensor: temperature | fields: depth, unit, reading, value Task: Retrieve reading from drought_index with value above the COUNT(reading) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014905
train
v3
Sensor network script: Node: temperature | code: mst | fields: ts, reading, qc, level Sensor: snow_depth | fields: lon, type, reading, qc Task: Retrieve reading from temperature with depth above the SUM(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014906
train
v2
Sensor network script: Node: temperature | code: prt | fields: depth, qc, lat, ts Sensor: snow_depth | fields: lat, type, depth, reading Task: Retrieve lon from temperature that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014907
train
v1
Sensor network script: Node: sunlight | code: hub | fields: depth, level, unit, ts Sensor: frost | fields: ts, level, qc, lat Task: Retrieve level from sunlight whose qc is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014908
train
v3
Sensor network script: Node: rainfall | code: stn | fields: type, value, qc, reading Sensor: pressure | fields: lon, level, depth, lat Task: Fetch reading from rainfall where depth is greater than the total of value in pressure for matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014909
train
v3
Sensor network script: Node: lightning | code: thr | fields: unit, value, reading, type Sensor: air_quality | fields: depth, level, value, ts Task: Get reading from lightning where value exceeds the maximum reading from air_quality for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014910
train
v2
Sensor network script: Node: dew_point | code: hub | fields: reading, value, qc, unit Sensor: air_quality | fields: lon, type, unit, qc Task: Get level from dew_point where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014911
train
v2
Sensor network script: Node: dew_point | code: gst | fields: reading, qc, value, depth Sensor: visibility | fields: reading, level, depth, qc Task: Retrieve value from dew_point that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014912
train
v2
Sensor network script: Node: evaporation | code: hub | fields: value, unit, qc, ts Sensor: pressure | fields: value, level, lon, lat Task: Get lon from evaporation where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014913
train
v1
Sensor network script: Node: uv_index | code: gst | fields: type, level, ts, unit Sensor: dew_point | fields: reading, unit, value, depth Task: Fetch level from uv_index where ts exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014914
train
v3
Sensor network script: Node: temperature | code: mst | fields: reading, qc, lat, level Sensor: drought_index | fields: reading, value, qc, unit Task: Fetch level from temperature where depth is greater than the minimum of depth in drought_index for matching type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014915
train
v1
Sensor network script: Node: humidity | code: ref | fields: ts, unit, reading, value Sensor: cloud_cover | fields: reading, type, value, qc Task: Retrieve level from humidity whose qc is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014916
train
v1
Sensor network script: Node: turbidity | code: ref | fields: type, unit, lat, qc Sensor: wind_speed | fields: value, depth, qc, level Task: Get depth from turbidity where ts appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014917
train
v1
Sensor network script: Node: humidity | code: gst | fields: reading, value, level, depth Sensor: frost | fields: type, level, lon, qc Task: Get value from humidity where ts appears in frost readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014918
train
v3
Sensor network script: Node: temperature | code: hub | fields: type, depth, reading, unit Sensor: cloud_cover | fields: reading, qc, level, ts Task: Retrieve level from temperature with value above the SUM(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014919
train
v2
Sensor network script: Node: pressure | code: thr | fields: unit, reading, ts, level Sensor: visibility | fields: lat, reading, depth, lon Task: Retrieve lat from pressure that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014920
train
v2
Sensor network script: Node: frost | code: clr | fields: type, value, unit, level Sensor: soil_moisture | fields: ts, unit, lat, depth Task: Retrieve reading from frost that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014921
train
v2
Sensor network script: Node: drought_index | code: prt | fields: level, qc, lon, depth Sensor: temperature | fields: type, lat, level, qc Task: Fetch level from drought_index that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014922
train
v1
Sensor network script: Node: pressure | code: thr | fields: ts, unit, level, lat Sensor: drought_index | fields: reading, unit, value, ts Task: Get depth from pressure where ts appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014923
train
v3
Sensor network script: Node: evaporation | code: stn | fields: lon, level, type, lat Sensor: sunlight | fields: unit, type, level, value Task: Fetch level from evaporation where value is greater than the count of of depth in sunlight for matching ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014924
train
v1
Sensor network script: Node: pressure | code: mst | fields: ts, level, lon, reading Sensor: evaporation | fields: level, lon, type, reading Task: Retrieve lon from pressure whose type is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014925
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: unit, lon, reading, type Sensor: pressure | fields: unit, value, ts, lon Task: Get lat from cloud_cover where reading exceeds the average value from pressure for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014926
train
v3
Sensor network script: Node: temperature | code: clr | fields: ts, level, qc, lat Sensor: lightning | fields: reading, lat, level, unit Task: Retrieve lon from temperature with value above the MAX(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014927
train
v3
Sensor network script: Node: temperature | code: clr | fields: level, qc, reading, type Sensor: lightning | fields: lon, depth, reading, qc Task: Get value from temperature where depth exceeds the total depth from lightning for the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014928
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: level, value, depth, ts Sensor: air_quality | fields: depth, type, qc, lon Task: Get depth from wind_speed where reading exceeds the minimum value from air_quality for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014929
train
v3
Sensor network script: Node: sunlight | code: prt | fields: lat, level, value, type Sensor: cloud_cover | fields: level, unit, lon, qc Task: Get level from sunlight where depth exceeds the total value from cloud_cover for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014930
train
v2
Sensor network script: Node: turbidity | code: thr | fields: unit, value, level, depth Sensor: rainfall | fields: ts, qc, lat, type Task: Get value from turbidity where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014931
train
v1
Sensor network script: Node: frost | code: thr | fields: value, reading, lon, level Sensor: humidity | fields: depth, lat, type, unit Task: Retrieve lat from frost whose ts is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014932
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: ts, depth, value, level Sensor: visibility | fields: ts, qc, lon, type Task: Get lon from soil_moisture where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014933
train
v1
Sensor network script: Node: visibility | code: gst | fields: type, value, qc, lon Sensor: turbidity | fields: lon, unit, reading, ts Task: Fetch reading from visibility where depth exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014934
train
v2
Sensor network script: Node: turbidity | code: hub | fields: unit, level, ts, type Sensor: temperature | fields: qc, value, lat, reading Task: Get lat from turbidity where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014935
train
v2
Sensor network script: Node: evaporation | code: mst | fields: ts, qc, value, reading Sensor: dew_point | fields: level, qc, reading, lat Task: Retrieve depth from evaporation that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014936
train
v3
Sensor network script: Node: rainfall | code: hub | fields: lat, qc, reading, value Sensor: lightning | fields: level, reading, unit, value Task: Get value from rainfall where reading exceeds the minimum reading from lightning for the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014937
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: value, lat, reading, qc Sensor: frost | fields: ts, reading, value, type Task: Fetch depth from snow_depth where value is greater than the maximum of reading in frost for matching type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014938
train
v1
Sensor network script: Node: lightning | code: mst | fields: depth, unit, lon, reading Sensor: drought_index | fields: value, reading, level, depth Task: Get reading from lightning where unit appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014939
train
v3
Sensor network script: Node: humidity | code: ref | fields: level, value, type, reading Sensor: rainfall | fields: qc, value, depth, lon Task: Retrieve depth from humidity with value above the SUM(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014940
train
v3
Sensor network script: Node: visibility | code: clr | fields: type, reading, lon, lat Sensor: uv_index | fields: unit, depth, ts, type Task: Fetch reading from visibility where value is greater than the maximum of value in uv_index for matching unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014941
train
v2
Sensor network script: Node: turbidity | code: stn | fields: qc, value, lat, ts Sensor: air_quality | fields: value, lon, unit, qc Task: Fetch reading from turbidity that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014942
train
v1
Sensor network script: Node: lightning | code: thr | fields: lon, type, depth, level Sensor: sunlight | fields: level, lon, value, qc Task: Retrieve lon from lightning whose ts is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014943
train
v2
Sensor network script: Node: visibility | code: mst | fields: unit, depth, lat, type Sensor: evaporation | fields: depth, type, level, value Task: Fetch lon from visibility that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014944
train
v1
Sensor network script: Node: lightning | code: stn | fields: ts, lat, qc, lon Sensor: humidity | fields: value, qc, type, lon Task: Fetch lon from lightning where depth exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014945
train
v3
Sensor network script: Node: sunlight | code: prt | fields: value, lon, level, type Sensor: snow_depth | fields: level, ts, lat, depth Task: Retrieve depth from sunlight with value above the MIN(value) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014946
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: depth, ts, lon, level Sensor: humidity | fields: lat, unit, lon, ts Task: Get level from soil_moisture where ts appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014947
train
v3
Sensor network script: Node: uv_index | code: ref | fields: type, unit, lon, depth Sensor: rainfall | fields: level, qc, lat, depth Task: Get value from uv_index where reading exceeds the maximum reading from rainfall for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014948
train
v3
Sensor network script: Node: evaporation | code: hub | fields: reading, ts, value, type Sensor: temperature | fields: reading, type, level, value Task: Get value from evaporation where value exceeds the count of depth from temperature for the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014949
train
v3
Sensor network script: Node: visibility | code: prt | fields: qc, unit, reading, ts Sensor: lightning | fields: level, type, unit, ts Task: Fetch level from visibility where depth is greater than the maximum of reading in lightning for matching type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014950
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: lon, reading, unit, type Sensor: air_quality | fields: lon, ts, type, lat Task: Get depth from wind_speed where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014951
train
v3
Sensor network script: Node: humidity | code: prt | fields: lat, lon, type, unit Sensor: rainfall | fields: value, lon, qc, unit Task: Get lat from humidity where value exceeds the count of depth from rainfall for the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014952
train
v1
Sensor network script: Node: temperature | code: stn | fields: level, lon, type, unit Sensor: turbidity | fields: depth, level, lon, lat Task: Retrieve lon from temperature whose type is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014953
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: level, unit, reading, ts Sensor: visibility | fields: depth, lat, lon, value Task: Retrieve value from wind_speed that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014954
train
v3
Sensor network script: Node: frost | code: stn | fields: type, reading, value, qc Sensor: drought_index | fields: reading, level, lon, depth Task: Get lat from frost where depth exceeds the maximum depth from drought_index for the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014955
train
v1
Sensor network script: Node: uv_index | code: hub | fields: qc, level, reading, lat Sensor: wind_speed | fields: type, reading, level, qc Task: Retrieve depth from uv_index whose ts is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014956
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: unit, type, value, ts Sensor: uv_index | fields: reading, unit, qc, lon Task: Get value from snow_depth where depth appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014957
train
v2
Sensor network script: Node: sunlight | code: stn | fields: lon, qc, level, value Sensor: wind_speed | fields: level, type, reading, ts Task: Fetch reading from sunlight that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014958
train
v3
Sensor network script: Node: uv_index | code: prt | fields: type, ts, depth, reading Sensor: evaporation | fields: ts, qc, value, level Task: Fetch value from uv_index where depth is greater than the minimum of depth in evaporation for matching type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014959
train
v1
Sensor network script: Node: sunlight | code: ref | fields: qc, reading, depth, type Sensor: snow_depth | fields: reading, lon, qc, value Task: Retrieve lon from sunlight whose depth is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014960
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: value, depth, qc, ts Sensor: dew_point | fields: level, reading, unit, qc Task: Get lon from snow_depth where value exceeds the count of value from dew_point for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014961
train
v3
Sensor network script: Node: drought_index | code: prt | fields: level, qc, value, unit Sensor: rainfall | fields: level, reading, type, ts Task: Get depth from drought_index where value exceeds the average reading from rainfall for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014962
train
v1
Sensor network script: Node: visibility | code: stn | fields: level, unit, reading, lat Sensor: dew_point | fields: value, ts, lon, type Task: Get level from visibility where type appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014963
train
v2
Sensor network script: Node: lightning | code: hub | fields: ts, lat, reading, value Sensor: visibility | fields: unit, reading, value, lon Task: Fetch lon from lightning that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014964
train
v2
Sensor network script: Node: drought_index | code: prt | fields: lat, qc, type, reading Sensor: wind_speed | fields: type, value, reading, depth Task: Get value from drought_index where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014965
train
v3
Sensor network script: Node: pressure | code: hub | fields: lat, lon, depth, qc Sensor: wind_speed | fields: level, type, unit, value Task: Get value from pressure where reading exceeds the total reading from wind_speed for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014966
train
v2
Sensor network script: Node: rainfall | code: gst | fields: type, ts, depth, level Sensor: evaporation | fields: qc, level, type, value Task: Get depth from rainfall where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014967
train
v3
Sensor network script: Node: evaporation | code: gst | fields: qc, type, lat, lon Sensor: snow_depth | fields: reading, unit, value, lon Task: Retrieve reading from evaporation with depth above the MIN(value) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014968
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: value, type, unit, qc Sensor: turbidity | fields: depth, type, level, unit Task: Get lon from snow_depth where reading exceeds the average reading from turbidity for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014969
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: unit, ts, value, lat Sensor: dew_point | fields: value, ts, type, lat Task: Fetch lon from wind_speed that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014970
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, level, value, depth Sensor: snow_depth | fields: qc, lat, lon, reading Task: Get value from cloud_cover where depth appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014971
train
v2
Sensor network script: Node: visibility | code: thr | fields: unit, lat, value, depth Sensor: frost | fields: level, qc, lat, value Task: Get reading from visibility where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014972
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: lat, type, ts, depth Sensor: wind_speed | fields: ts, reading, lat, depth Task: Retrieve reading from soil_moisture that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014973
train
v1
Sensor network script: Node: air_quality | code: mst | fields: type, depth, ts, unit Sensor: humidity | fields: type, lat, reading, value Task: Retrieve reading from air_quality whose unit is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014974
train
v1
Sensor network script: Node: visibility | code: prt | fields: value, lon, lat, unit Sensor: drought_index | fields: type, depth, unit, qc Task: Retrieve lat from visibility whose type is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014975
train
v2
Sensor network script: Node: sunlight | code: hub | fields: lat, type, value, reading Sensor: dew_point | fields: unit, reading, type, qc Task: Get lat from sunlight where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014976
train
v1
Sensor network script: Node: visibility | code: clr | fields: unit, level, ts, value Sensor: wind_speed | fields: qc, lon, level, depth Task: Fetch lon from visibility where depth exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014977
train
v1
Sensor network script: Node: dew_point | code: prt | fields: qc, ts, lat, unit Sensor: temperature | fields: level, reading, value, lat Task: Get reading from dew_point where depth appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014978
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: value, lon, reading, level Sensor: sunlight | fields: value, unit, ts, reading Task: Retrieve value from cloud_cover with value above the MAX(reading) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014979
train
v3
Sensor network script: Node: frost | code: stn | fields: type, reading, unit, level Sensor: drought_index | fields: unit, type, depth, ts Task: Retrieve depth from frost with depth above the AVG(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "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_014980
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: type, reading, level, lat Sensor: drought_index | fields: value, level, unit, ts Task: Get lon from wind_speed where value exceeds the maximum depth from drought_index for the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014981
train
v1
Sensor network script: Node: humidity | code: prt | fields: lon, ts, reading, value Sensor: evaporation | fields: ts, level, type, unit Task: Get lon from humidity where unit appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014982
train
v3
Sensor network script: Node: air_quality | code: mst | fields: ts, reading, value, qc Sensor: cloud_cover | fields: lat, level, type, unit Task: Fetch lon from air_quality where reading is greater than the total of value in cloud_cover for matching qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014983
train
v3
Sensor network script: Node: pressure | code: gst | fields: depth, qc, unit, lat Sensor: soil_moisture | fields: depth, unit, type, value Task: Get value from pressure where value exceeds the minimum value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014984
train
v2
Sensor network script: Node: drought_index | code: thr | fields: unit, depth, ts, type Sensor: air_quality | fields: depth, lon, type, reading Task: Fetch depth from drought_index that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014985
train
v3
Sensor network script: Node: uv_index | code: prt | fields: lat, ts, depth, qc Sensor: drought_index | fields: reading, lat, qc, unit Task: Get lat from uv_index where reading exceeds the maximum reading from drought_index for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014986
train
v2
Sensor network script: Node: temperature | code: clr | fields: lat, type, qc, depth Sensor: evaporation | fields: unit, ts, lon, level Task: Fetch lon from temperature that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014987
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: type, ts, qc, lon Sensor: lightning | fields: lon, reading, level, unit Task: Fetch lon from cloud_cover where ts exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014988
train
v2
Sensor network script: Node: dew_point | code: gst | fields: qc, reading, ts, lat Sensor: snow_depth | fields: lon, lat, level, unit Task: Retrieve depth from dew_point that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014989
train
v2
Sensor network script: Node: visibility | code: clr | fields: depth, level, ts, reading Sensor: wind_speed | fields: unit, ts, qc, lon Task: Retrieve lon from visibility that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014990
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: type, level, qc, reading Sensor: dew_point | fields: unit, type, qc, value Task: Fetch value from snow_depth where depth is greater than the maximum of reading in dew_point for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014991
train
v2
Sensor network script: Node: dew_point | code: hub | fields: qc, level, value, reading Sensor: soil_moisture | fields: depth, qc, lat, lon Task: Fetch lat from dew_point that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014992
train
v1
Sensor network script: Node: uv_index | code: ref | fields: type, depth, lat, level Sensor: lightning | fields: lon, unit, reading, lat Task: Fetch depth from uv_index where ts exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014993
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, depth, qc, lon Sensor: drought_index | fields: lon, depth, ts, lat Task: Get lat from uv_index where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014994
train
v3
Sensor network script: Node: evaporation | code: hub | fields: reading, value, lon, unit Sensor: snow_depth | fields: ts, lon, value, level Task: Fetch depth from evaporation where value is greater than the maximum of reading in snow_depth for matching depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014995
train
v2
Sensor network script: Node: visibility | code: prt | fields: depth, qc, unit, reading Sensor: dew_point | fields: depth, ts, reading, lat Task: Fetch level from visibility that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014996
train
v3
Sensor network script: Node: pressure | code: thr | fields: ts, lat, level, type Sensor: rainfall | fields: reading, depth, value, qc Task: Fetch depth from pressure where depth is greater than the total of value in rainfall for matching type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014997
train
v2
Sensor network script: Node: drought_index | code: prt | fields: depth, lon, qc, level Sensor: frost | fields: depth, ts, reading, lon Task: Retrieve reading from drought_index that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014998
train
v3
Sensor network script: Node: frost | code: clr | fields: depth, value, lat, level Sensor: rainfall | fields: depth, lat, type, ts Task: Get lon from frost where reading exceeds the average value from rainfall for the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014999
train