variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: visibility | code: stn | fields: reading, qc, unit, level Sensor: evaporation | fields: depth, qc, lon, value Task: Fetch reading from visibility that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019800
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: type, qc, reading, level Sensor: temperature | fields: type, reading, lon, qc Task: Retrieve reading from cloud_cover whose ts is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019801
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: ts, lat, value, reading Sensor: temperature | fields: type, reading, qc, level Task: Retrieve value from soil_moisture that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019802
train
v3
Sensor network script: Node: evaporation | code: hub | fields: qc, level, value, unit Sensor: uv_index | fields: lat, value, type, unit Task: Fetch level from evaporation where reading is greater than the minimum of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019803
train
v3
Sensor network script: Node: rainfall | code: thr | fields: type, depth, lat, value Sensor: uv_index | fields: unit, level, lat, type Task: Retrieve level from rainfall with reading above the SUM(depth) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019804
train
v3
Sensor network script: Node: turbidity | code: thr | fields: lon, type, qc, ts Sensor: dew_point | fields: type, lon, depth, reading Task: Get lat from turbidity where depth exceeds the count of depth from dew_point for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019805
train
v2
Sensor network script: Node: uv_index | code: prt | fields: lon, ts, value, reading Sensor: wind_speed | fields: ts, level, type, depth Task: Get level from uv_index where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019806
train
v2
Sensor network script: Node: temperature | code: stn | fields: depth, reading, level, qc Sensor: turbidity | fields: unit, ts, lon, value Task: Fetch value from temperature that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019807
train
v3
Sensor network script: Node: pressure | code: ref | fields: depth, ts, unit, qc Sensor: dew_point | fields: unit, value, qc, ts Task: Retrieve lat from pressure with depth above the SUM(reading) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019808
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: reading, depth, ts, type Sensor: humidity | fields: value, type, unit, depth Task: Retrieve level from cloud_cover with depth above the MAX(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019809
train
v1
Sensor network script: Node: drought_index | code: thr | fields: depth, type, reading, unit Sensor: visibility | fields: value, type, level, depth Task: Get depth from drought_index where type appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019810
train
v3
Sensor network script: Node: evaporation | code: stn | fields: value, lat, qc, level Sensor: visibility | fields: ts, unit, reading, level Task: Fetch depth from evaporation where reading is greater than the count of of value in visibility for matching ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019811
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, type, qc, unit Sensor: frost | fields: ts, qc, type, lat Task: Get depth from rainfall where reading exceeds the count of reading from frost for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019812
train
v1
Sensor network script: Node: uv_index | code: thr | fields: value, depth, lon, reading Sensor: lightning | fields: lat, level, unit, depth Task: Retrieve value from uv_index whose ts is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019813
train
v3
Sensor network script: Node: frost | code: stn | fields: unit, lat, depth, lon Sensor: cloud_cover | fields: reading, type, ts, qc Task: Get lat from frost where depth exceeds the total reading from cloud_cover for the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019814
train
v2
Sensor network script: Node: rainfall | code: thr | fields: lat, type, value, depth Sensor: cloud_cover | fields: value, type, qc, level Task: Retrieve lon from rainfall that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019815
train
v1
Sensor network script: Node: air_quality | code: prt | fields: ts, level, value, unit Sensor: sunlight | fields: lon, qc, depth, lat Task: Fetch level from air_quality where depth exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019816
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, depth, reading, level Sensor: sunlight | fields: qc, value, lat, lon Task: Retrieve reading from humidity with depth above the MAX(depth) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019817
train
v1
Sensor network script: Node: frost | code: gst | fields: ts, type, lon, qc Sensor: soil_moisture | fields: type, value, lat, lon Task: Retrieve depth from frost whose type is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019818
train
v1
Sensor network script: Node: rainfall | code: prt | fields: level, lon, depth, lat Sensor: dew_point | fields: depth, unit, lon, lat Task: Get depth from rainfall where depth appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019819
train
v2
Sensor network script: Node: rainfall | code: hub | fields: value, depth, unit, level Sensor: sunlight | fields: qc, value, type, level Task: Fetch reading from rainfall that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019820
train
v2
Sensor network script: Node: drought_index | code: mst | fields: depth, qc, type, ts Sensor: visibility | fields: lon, lat, depth, reading Task: Fetch reading from drought_index that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019821
train
v1
Sensor network script: Node: uv_index | code: gst | fields: lon, lat, qc, level Sensor: sunlight | fields: lat, depth, unit, type Task: Retrieve lat from uv_index whose ts is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019822
train
v2
Sensor network script: Node: rainfall | code: prt | fields: level, qc, unit, lon Sensor: frost | fields: level, lat, depth, unit Task: Fetch reading from rainfall that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "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_019823
train
v3
Sensor network script: Node: uv_index | code: gst | fields: reading, type, lat, lon Sensor: temperature | fields: level, depth, value, qc Task: Retrieve level from uv_index with reading above the AVG(value) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019824
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: value, reading, level, type Sensor: dew_point | fields: value, lat, level, reading Task: Get depth from soil_moisture where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019825
train
v2
Sensor network script: Node: frost | code: stn | fields: qc, type, depth, ts Sensor: air_quality | fields: value, level, ts, type Task: Get reading from frost where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019826
train
v3
Sensor network script: Node: lightning | code: gst | fields: ts, level, unit, reading Sensor: frost | fields: ts, qc, depth, lat Task: Fetch reading from lightning where reading is greater than the minimum of depth in frost for matching type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019827
train
v1
Sensor network script: Node: visibility | code: hub | fields: depth, reading, level, type Sensor: pressure | fields: unit, lon, ts, reading Task: Get reading from visibility where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019828
train
v2
Sensor network script: Node: air_quality | code: hub | fields: depth, value, ts, lon Sensor: visibility | fields: lon, ts, value, depth Task: Fetch depth from air_quality that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019829
train
v3
Sensor network script: Node: uv_index | code: mst | fields: unit, type, qc, lon Sensor: air_quality | fields: type, reading, level, depth Task: Get lat from uv_index where reading exceeds the minimum value from air_quality for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019830
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: lat, value, qc, level Sensor: dew_point | fields: reading, lat, ts, value Task: Fetch reading from cloud_cover that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019831
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: type, level, ts, lat Sensor: dew_point | fields: lat, lon, qc, ts Task: Fetch lon from snow_depth that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019832
train
v3
Sensor network script: Node: evaporation | code: mst | fields: depth, ts, lat, value Sensor: pressure | fields: lat, unit, level, value Task: Get depth from evaporation where depth exceeds the minimum value from pressure for the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019833
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: lon, ts, qc, lat Sensor: wind_speed | fields: reading, ts, lon, value Task: Retrieve value from snow_depth whose unit is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019834
train
v1
Sensor network script: Node: evaporation | code: stn | fields: ts, depth, reading, unit Sensor: turbidity | fields: unit, depth, lat, level Task: Retrieve lat from evaporation whose ts is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019835
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: lat, lon, qc, type Sensor: humidity | fields: unit, ts, level, value Task: Retrieve value from cloud_cover whose unit is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019836
train
v1
Sensor network script: Node: rainfall | code: gst | fields: reading, ts, unit, lon Sensor: snow_depth | fields: qc, unit, reading, level Task: Get value from rainfall where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019837
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: unit, type, level, depth Sensor: air_quality | fields: depth, ts, qc, level Task: Get lon from soil_moisture where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019838
train
v3
Sensor network script: Node: dew_point | code: clr | fields: depth, unit, qc, level Sensor: rainfall | fields: lon, qc, value, level Task: Get depth from dew_point where reading exceeds the minimum value from rainfall for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019839
train
v2
Sensor network script: Node: pressure | code: prt | fields: lat, level, ts, lon Sensor: sunlight | fields: lon, reading, depth, level Task: Retrieve level from pressure that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019840
train
v3
Sensor network script: Node: visibility | code: thr | fields: level, ts, type, qc Sensor: drought_index | fields: value, qc, lon, depth Task: Fetch level from visibility where depth is greater than the minimum of value in drought_index for matching unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019841
train
v3
Sensor network script: Node: sunlight | code: hub | fields: reading, level, type, qc Sensor: drought_index | fields: value, unit, level, depth Task: Retrieve lat from sunlight with value above the AVG(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019842
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: ts, qc, value, lon Sensor: air_quality | fields: ts, value, reading, depth Task: Retrieve lon from cloud_cover with reading above the COUNT(value) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019843
train
v2
Sensor network script: Node: humidity | code: clr | fields: lat, depth, qc, unit Sensor: lightning | fields: value, type, reading, ts Task: Fetch value from humidity that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019844
train
v1
Sensor network script: Node: evaporation | code: gst | fields: lat, level, value, qc Sensor: visibility | fields: ts, qc, value, type Task: Retrieve lon from evaporation whose depth is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019845
train
v3
Sensor network script: Node: humidity | code: mst | fields: reading, lon, level, value Sensor: soil_moisture | fields: reading, value, level, lon Task: Retrieve level from humidity with value above the COUNT(depth) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019846
train
v2
Sensor network script: Node: dew_point | code: clr | fields: reading, type, level, lat Sensor: frost | fields: unit, depth, qc, lat Task: Get level from dew_point where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019847
train
v1
Sensor network script: Node: uv_index | code: stn | fields: reading, depth, unit, level Sensor: sunlight | fields: depth, level, lon, value Task: Retrieve lat from uv_index whose type is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019848
train
v2
Sensor network script: Node: turbidity | code: stn | fields: level, lon, value, ts Sensor: cloud_cover | fields: lat, value, unit, lon Task: Retrieve lat from turbidity that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019849
train
v1
Sensor network script: Node: turbidity | code: hub | fields: type, level, reading, value Sensor: visibility | fields: level, value, ts, unit Task: Get lat from turbidity where type appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019850
train
v3
Sensor network script: Node: frost | code: clr | fields: lat, ts, value, depth Sensor: snow_depth | fields: qc, lon, lat, reading Task: Retrieve lat from frost with depth above the COUNT(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019851
train
v3
Sensor network script: Node: humidity | code: ref | fields: unit, level, type, lon Sensor: air_quality | fields: unit, reading, lon, level Task: Get level from humidity where depth exceeds the maximum value from air_quality for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019852
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: reading, unit, lat, value Sensor: humidity | fields: unit, lon, value, depth Task: Retrieve level from wind_speed whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019853
train
v1
Sensor network script: Node: visibility | code: ref | fields: ts, lat, depth, qc Sensor: humidity | fields: lat, ts, value, reading Task: Retrieve level from visibility whose depth is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019854
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: unit, lat, reading, value Sensor: drought_index | fields: reading, lon, level, qc Task: Retrieve level from cloud_cover that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019855
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: ts, reading, lon, unit Sensor: snow_depth | fields: qc, level, type, unit Task: Fetch depth from cloud_cover where depth exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019856
train
v1
Sensor network script: Node: uv_index | code: ref | fields: unit, value, lon, reading Sensor: lightning | fields: qc, value, depth, level Task: Fetch depth from uv_index where unit exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019857
train
v1
Sensor network script: Node: air_quality | code: thr | fields: value, qc, type, reading Sensor: dew_point | fields: ts, reading, level, unit Task: Get reading from air_quality where unit appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019858
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: qc, depth, unit, reading Sensor: sunlight | fields: lat, ts, level, lon Task: Get depth from soil_moisture where depth exceeds the minimum depth from sunlight for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019859
train
v2
Sensor network script: Node: humidity | code: prt | fields: lon, depth, qc, type Sensor: turbidity | fields: level, depth, reading, unit Task: Retrieve value from humidity that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019860
train
v2
Sensor network script: Node: drought_index | code: ref | fields: reading, unit, lat, level Sensor: turbidity | fields: lon, value, ts, type Task: Retrieve lon from drought_index that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019861
train
v2
Sensor network script: Node: visibility | code: prt | fields: reading, lon, depth, ts Sensor: dew_point | fields: depth, qc, unit, reading Task: Retrieve value from visibility that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019862
train
v2
Sensor network script: Node: sunlight | code: ref | fields: reading, value, level, lon Sensor: dew_point | fields: depth, ts, reading, type Task: Retrieve reading from sunlight that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019863
train
v2
Sensor network script: Node: sunlight | code: ref | fields: depth, unit, lon, reading Sensor: air_quality | fields: value, lat, depth, lon Task: Retrieve lat from sunlight that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019864
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: level, lat, value, depth Sensor: uv_index | fields: ts, level, lon, reading Task: Get depth from wind_speed where reading exceeds the total value from uv_index for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019865
train
v3
Sensor network script: Node: rainfall | code: thr | fields: lon, type, unit, qc Sensor: drought_index | fields: reading, level, lat, qc Task: Get depth from rainfall where value exceeds the total value from drought_index for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019866
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lat, qc, level, type Sensor: soil_moisture | fields: lat, value, level, qc Task: Retrieve depth from wind_speed that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019867
train
v3
Sensor network script: Node: humidity | code: thr | fields: value, qc, lat, unit Sensor: sunlight | fields: ts, level, unit, lon Task: Get reading from humidity where depth exceeds the total depth from sunlight for the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019868
train
v2
Sensor network script: Node: humidity | code: clr | fields: type, level, reading, value Sensor: frost | fields: value, lon, qc, type Task: Get lon from humidity where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019869
train
v2
Sensor network script: Node: dew_point | code: prt | fields: unit, depth, type, ts Sensor: lightning | fields: ts, unit, lat, lon Task: Get value from dew_point where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019870
train
v3
Sensor network script: Node: turbidity | code: prt | fields: value, ts, depth, qc Sensor: sunlight | fields: type, depth, lon, reading Task: Get value from turbidity where depth exceeds the average reading from sunlight for the same qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019871
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: ts, reading, type, unit Sensor: temperature | fields: qc, type, reading, unit Task: Fetch lat from cloud_cover where reading is greater than the maximum of reading in temperature for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019872
train
v2
Sensor network script: Node: dew_point | code: hub | fields: qc, value, level, lat Sensor: air_quality | fields: lat, level, ts, qc Task: Retrieve value 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="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019873
train
v2
Sensor network script: Node: drought_index | code: gst | fields: lon, type, value, lat Sensor: frost | fields: depth, ts, value, level Task: Get lon from drought_index where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019874
train
v2
Sensor network script: Node: sunlight | code: stn | fields: level, reading, unit, ts Sensor: evaporation | fields: lon, lat, level, value Task: Fetch lat from sunlight that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019875
train
v2
Sensor network script: Node: lightning | code: hub | fields: reading, lat, depth, level Sensor: frost | fields: unit, lon, ts, qc Task: Get reading from lightning where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019876
train
v2
Sensor network script: Node: frost | code: thr | fields: depth, lat, ts, lon Sensor: dew_point | fields: reading, lat, qc, lon Task: Get lat from frost where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019877
train
v1
Sensor network script: Node: evaporation | code: mst | fields: value, type, depth, ts Sensor: visibility | fields: level, type, lon, lat Task: Fetch level from evaporation where type exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019878
train
v2
Sensor network script: Node: sunlight | code: stn | fields: lat, unit, reading, ts Sensor: visibility | fields: unit, qc, type, value Task: Retrieve lat from sunlight that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019879
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: lat, ts, type, reading Sensor: turbidity | fields: lon, type, value, lat Task: Get level from soil_moisture where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019880
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: ts, type, qc, level Sensor: air_quality | fields: depth, lat, ts, qc Task: Retrieve lon from soil_moisture that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019881
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: qc, lon, level, depth Sensor: air_quality | fields: value, type, qc, depth Task: Retrieve value from cloud_cover whose depth is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019882
train
v3
Sensor network script: Node: rainfall | code: mst | fields: ts, depth, type, reading Sensor: dew_point | fields: unit, lat, lon, ts Task: Get value from rainfall where reading exceeds the total reading from dew_point for the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019883
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: reading, unit, lat, ts Sensor: frost | fields: type, reading, level, qc Task: Retrieve reading from snow_depth whose unit is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019884
train
v1
Sensor network script: Node: turbidity | code: stn | fields: lon, level, type, unit Sensor: frost | fields: qc, value, ts, lat Task: Fetch lat from turbidity where ts exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019885
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: unit, type, qc, value Sensor: evaporation | fields: type, unit, depth, qc Task: Get level from cloud_cover where type appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019886
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: value, type, ts, level Sensor: humidity | fields: reading, ts, depth, type Task: Fetch depth from cloud_cover where type exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019887
train
v3
Sensor network script: Node: lightning | code: thr | fields: value, ts, unit, level Sensor: wind_speed | fields: lon, reading, qc, lat Task: Fetch depth from lightning where depth is greater than the count of of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019888
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: level, ts, lon, qc Sensor: air_quality | fields: qc, depth, level, unit Task: Get depth from wind_speed where qc appears in air_quality readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019889
train
v1
Sensor network script: Node: rainfall | code: hub | fields: reading, level, lon, type Sensor: drought_index | fields: unit, type, ts, lon Task: Get value from rainfall where type appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019890
train
v1
Sensor network script: Node: pressure | code: ref | fields: lon, lat, qc, value Sensor: dew_point | fields: depth, qc, ts, value Task: Retrieve level from pressure whose ts is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019891
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: value, depth, unit, lat Sensor: rainfall | fields: unit, type, ts, reading Task: Fetch reading from snow_depth where depth is greater than the total of reading in rainfall for matching type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019892
train
v2
Sensor network script: Node: frost | code: mst | fields: level, unit, lat, reading Sensor: turbidity | fields: depth, level, lat, qc Task: Get lat from frost where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019893
train
v3
Sensor network script: Node: dew_point | code: mst | fields: reading, level, depth, value Sensor: frost | fields: value, lon, reading, type Task: Retrieve lat from dew_point with reading above the MIN(depth) of frost readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019894
train
v3
Sensor network script: Node: humidity | code: stn | fields: depth, unit, type, ts Sensor: snow_depth | fields: lat, unit, level, type Task: Retrieve depth from humidity with reading above the AVG(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019895
train
v3
Sensor network script: Node: turbidity | code: thr | fields: depth, unit, type, ts Sensor: wind_speed | fields: qc, type, ts, lat Task: Get depth from turbidity where depth exceeds the minimum value from wind_speed for the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019896
train
v3
Sensor network script: Node: rainfall | code: prt | fields: ts, type, qc, lon Sensor: snow_depth | fields: level, unit, lon, ts Task: Get lon from rainfall where reading exceeds the minimum value from snow_depth for the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019897
train
v1
Sensor network script: Node: lightning | code: clr | fields: type, lon, unit, ts Sensor: uv_index | fields: qc, lat, lon, value Task: Retrieve level from lightning whose unit is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_019898
train
v2
Sensor network script: Node: lightning | code: prt | fields: unit, ts, lon, depth Sensor: wind_speed | fields: qc, unit, lat, level Task: Retrieve value from lightning that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_019899
train