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: uv_index | code: thr | fields: qc, type, reading, lon Sensor: dew_point | fields: lon, qc, type, unit Task: Fetch lat from uv_index where value is greater than the maximum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065900
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: depth, qc, type, reading Sensor: air_quality | fields: level, depth, lat, qc Task: Get value from cloud_cover where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065901
train
v2
Sensor network script: Node: frost | code: thr | fields: ts, reading, lon, unit Sensor: turbidity | fields: reading, ts, qc, type Task: Retrieve value from frost that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065902
train
v1
Sensor network script: Node: air_quality | code: thr | fields: lat, type, lon, level Sensor: visibility | fields: level, unit, value, qc Task: Get depth from air_quality where type appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065903
train
v1
Sensor network script: Node: humidity | code: thr | fields: ts, unit, qc, value Sensor: lightning | fields: unit, type, level, depth Task: Fetch value from humidity where qc exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065904
train
v3
Sensor network script: Node: rainfall | code: ref | fields: depth, type, qc, ts Sensor: cloud_cover | fields: reading, unit, qc, value Task: Get reading from rainfall where depth exceeds the count of reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065905
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: qc, unit, lat, lon Sensor: wind_speed | fields: qc, type, lat, unit Task: Retrieve value from soil_moisture whose type is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065906
train
v2
Sensor network script: Node: dew_point | code: stn | fields: level, type, unit, value Sensor: sunlight | fields: qc, ts, reading, value Task: Retrieve value from dew_point that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065907
train
v2
Sensor network script: Node: frost | code: hub | fields: lon, depth, reading, ts Sensor: wind_speed | fields: ts, reading, qc, type Task: Retrieve lon from frost that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065908
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: depth, type, lon, qc Sensor: drought_index | fields: lon, qc, ts, value Task: Fetch value from soil_moisture where reading is greater than the total of value in drought_index for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065909
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: qc, reading, value, ts Sensor: evaporation | fields: qc, value, lon, ts Task: Get depth from snow_depth where reading exceeds the count of value from evaporation for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065910
train
v3
Sensor network script: Node: sunlight | code: gst | fields: qc, level, reading, value Sensor: frost | fields: depth, level, ts, qc Task: Fetch depth from sunlight where value is greater than the total of value in frost for matching depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065911
train
v1
Sensor network script: Node: air_quality | code: clr | fields: ts, reading, unit, type Sensor: rainfall | fields: type, value, reading, unit Task: Fetch lat from air_quality where depth exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065912
train
v3
Sensor network script: Node: turbidity | code: gst | fields: value, depth, type, reading Sensor: dew_point | fields: qc, lon, lat, value Task: Fetch lon from turbidity where depth is greater than the maximum of depth in dew_point for matching type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065913
train
v2
Sensor network script: Node: evaporation | code: ref | fields: unit, reading, value, type Sensor: rainfall | fields: reading, ts, depth, type Task: Retrieve depth from evaporation that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065914
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: qc, lat, value, type Sensor: sunlight | fields: ts, reading, lat, level Task: Get value from wind_speed where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065915
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lon, type, reading, lat Sensor: uv_index | fields: type, reading, depth, unit Task: Retrieve value from sunlight with value above the COUNT(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065916
train
v2
Sensor network script: Node: pressure | code: prt | fields: value, qc, ts, lat Sensor: rainfall | fields: level, qc, value, lon Task: Fetch reading from pressure that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065917
train
v2
Sensor network script: Node: frost | code: gst | fields: unit, depth, type, value Sensor: air_quality | fields: ts, type, lat, lon Task: Get lon from frost where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065918
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: unit, qc, lat, depth Sensor: air_quality | fields: level, unit, depth, qc Task: Retrieve level from snow_depth that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065919
train
v1
Sensor network script: Node: uv_index | code: clr | fields: level, type, depth, lat Sensor: dew_point | fields: depth, qc, type, reading Task: Get lat from uv_index where depth appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065920
train
v2
Sensor network script: Node: drought_index | code: mst | fields: lat, depth, type, unit Sensor: pressure | fields: depth, value, lon, level Task: Fetch reading from drought_index that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065921
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, lon, ts, unit Sensor: drought_index | fields: reading, lon, unit, type Task: Fetch level from humidity where value is greater than the total of value in drought_index for matching unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065922
train
v1
Sensor network script: Node: temperature | code: thr | fields: reading, lon, type, lat Sensor: turbidity | fields: lon, qc, reading, type Task: Get value from temperature where qc appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065923
train
v1
Sensor network script: Node: pressure | code: prt | fields: qc, lat, reading, ts Sensor: humidity | fields: qc, depth, level, type Task: Fetch level from pressure where qc exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065924
train
v1
Sensor network script: Node: air_quality | code: mst | fields: value, qc, reading, type Sensor: humidity | fields: type, depth, lon, value Task: Retrieve value from air_quality whose ts is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065925
train
v2
Sensor network script: Node: pressure | code: ref | fields: qc, unit, value, lon Sensor: air_quality | fields: lon, qc, unit, level Task: Retrieve lat from pressure that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065926
train
v1
Sensor network script: Node: turbidity | code: thr | fields: unit, lat, qc, level Sensor: snow_depth | fields: qc, unit, value, lon Task: Fetch lon from turbidity where ts exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065927
train
v1
Sensor network script: Node: pressure | code: ref | fields: qc, reading, level, depth Sensor: uv_index | fields: level, reading, ts, value Task: Retrieve lat from pressure whose unit is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065928
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: reading, value, lat, depth Sensor: snow_depth | fields: ts, reading, lat, lon Task: Fetch lat from cloud_cover where qc exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065929
train
v2
Sensor network script: Node: frost | code: hub | fields: level, lon, reading, depth Sensor: drought_index | fields: level, lat, reading, qc Task: Retrieve reading from frost that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065930
train
v1
Sensor network script: Node: pressure | code: prt | fields: ts, unit, value, depth Sensor: wind_speed | fields: type, level, depth, ts Task: Get lon from pressure where ts appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065931
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lon, reading, type, depth Sensor: sunlight | fields: lon, depth, unit, level Task: Get depth from cloud_cover where ts appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065932
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: depth, lon, value, ts Sensor: temperature | fields: unit, level, qc, lon Task: Get lon from snow_depth where depth exceeds the average depth from temperature for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065933
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: reading, value, ts, lon Sensor: wind_speed | fields: ts, unit, level, qc Task: Fetch lat from soil_moisture where depth is greater than the maximum of depth in wind_speed for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065934
train
v3
Sensor network script: Node: frost | code: ref | fields: type, lat, depth, unit Sensor: rainfall | fields: ts, value, qc, lon Task: Retrieve lat from frost with reading above the COUNT(value) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065935
train
v2
Sensor network script: Node: turbidity | code: clr | fields: unit, value, level, reading Sensor: uv_index | fields: lon, lat, level, qc Task: Retrieve reading from turbidity that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065936
train
v1
Sensor network script: Node: pressure | code: ref | fields: unit, lon, type, value Sensor: frost | fields: ts, type, lat, qc Task: Fetch lat from pressure where qc exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065937
train
v2
Sensor network script: Node: uv_index | code: stn | fields: type, ts, level, unit Sensor: evaporation | fields: depth, type, lon, lat Task: Retrieve value from uv_index that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065938
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: qc, depth, unit, type Sensor: uv_index | fields: lat, type, level, ts Task: Get value from soil_moisture where depth exceeds the average reading from uv_index for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065939
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: depth, lat, reading, qc Sensor: soil_moisture | fields: level, reading, depth, type Task: Fetch level from snow_depth that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065940
train
v3
Sensor network script: Node: temperature | code: mst | fields: lat, reading, depth, value Sensor: cloud_cover | fields: unit, lon, ts, qc Task: Get depth from temperature where reading exceeds the maximum reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065941
train
v2
Sensor network script: Node: humidity | code: mst | fields: lon, unit, reading, type Sensor: uv_index | fields: qc, level, unit, depth Task: Retrieve reading from humidity that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065942
train
v1
Sensor network script: Node: drought_index | code: prt | fields: value, unit, ts, lat Sensor: lightning | fields: unit, level, value, depth Task: Retrieve value from drought_index whose qc is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065943
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: type, reading, unit, ts Sensor: rainfall | fields: value, level, qc, ts Task: Retrieve reading from wind_speed that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065944
train
v3
Sensor network script: Node: pressure | code: mst | fields: unit, ts, qc, depth Sensor: visibility | fields: depth, lat, type, lon Task: Fetch reading from pressure where depth is greater than the minimum of depth in visibility for matching ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065945
train
v2
Sensor network script: Node: temperature | code: thr | fields: type, depth, unit, level Sensor: pressure | fields: lat, ts, depth, reading Task: Get value from temperature where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065946
train
v1
Sensor network script: Node: frost | code: prt | fields: value, reading, type, qc Sensor: sunlight | fields: ts, unit, level, depth Task: Retrieve value from frost whose ts is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065947
train
v1
Sensor network script: Node: pressure | code: gst | fields: reading, level, type, ts Sensor: dew_point | fields: type, ts, unit, qc Task: Fetch lat from pressure where depth exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065948
train
v3
Sensor network script: Node: temperature | code: ref | fields: depth, qc, type, level Sensor: wind_speed | fields: unit, depth, qc, reading Task: Fetch depth from temperature where reading is greater than the minimum of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065949
train
v3
Sensor network script: Node: uv_index | code: mst | fields: reading, lat, lon, unit Sensor: temperature | fields: depth, value, type, level Task: Retrieve value from uv_index with reading above the SUM(reading) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065950
train
v1
Sensor network script: Node: sunlight | code: mst | fields: qc, ts, value, depth Sensor: pressure | fields: value, unit, level, lat Task: Fetch lat from sunlight where qc exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065951
train
v2
Sensor network script: Node: frost | code: gst | fields: qc, level, lon, lat Sensor: temperature | fields: qc, value, reading, level Task: Get reading from frost where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065952
train
v2
Sensor network script: Node: drought_index | code: prt | fields: lat, unit, level, depth Sensor: frost | fields: type, qc, level, reading Task: Fetch lat from drought_index that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065953
train
v2
Sensor network script: Node: sunlight | code: mst | fields: reading, type, lon, ts Sensor: air_quality | fields: reading, type, depth, level Task: Retrieve depth from sunlight that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065954
train
v1
Sensor network script: Node: temperature | code: hub | fields: lon, ts, reading, type Sensor: visibility | fields: depth, value, type, reading Task: Get lon from temperature where qc appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065955
train
v1
Sensor network script: Node: drought_index | code: mst | fields: value, qc, depth, level Sensor: rainfall | fields: depth, level, qc, lon Task: Retrieve level from drought_index whose ts is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065956
train
v2
Sensor network script: Node: evaporation | code: ref | fields: value, qc, depth, unit Sensor: frost | fields: reading, type, lon, level Task: Fetch level from evaporation that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065957
train
v2
Sensor network script: Node: uv_index | code: thr | fields: lon, level, lat, ts Sensor: evaporation | fields: lon, reading, type, qc Task: Get lat from uv_index where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065958
train
v2
Sensor network script: Node: evaporation | code: stn | fields: level, reading, depth, lon Sensor: soil_moisture | fields: value, ts, lat, lon Task: Fetch depth from evaporation that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065959
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: depth, lon, lat, level Sensor: air_quality | fields: value, lat, depth, unit Task: Get lat from snow_depth where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065960
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: reading, qc, ts, depth Sensor: air_quality | fields: unit, lon, qc, type Task: Retrieve depth from cloud_cover that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065961
train
v1
Sensor network script: Node: evaporation | code: mst | fields: ts, lon, level, unit Sensor: sunlight | fields: ts, type, value, lon Task: Fetch depth from evaporation where unit exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065962
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: ts, reading, qc, value Sensor: temperature | fields: qc, unit, reading, level Task: Get value from soil_moisture where value exceeds the maximum value from temperature for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065963
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: level, ts, qc, unit Sensor: rainfall | fields: ts, unit, lat, lon Task: Get depth from soil_moisture where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065964
train
v2
Sensor network script: Node: humidity | code: prt | fields: lat, type, depth, lon Sensor: wind_speed | fields: type, lat, lon, qc Task: Get depth from humidity where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065965
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: value, depth, lon, unit Sensor: dew_point | fields: unit, qc, level, value Task: Fetch value from wind_speed that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065966
train
v2
Sensor network script: Node: pressure | code: hub | fields: level, qc, unit, value Sensor: air_quality | fields: level, depth, value, lat Task: Retrieve depth from pressure that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065967
train
v3
Sensor network script: Node: lightning | code: mst | fields: level, ts, qc, reading Sensor: air_quality | fields: type, qc, lat, reading Task: Retrieve lon from lightning with depth above the COUNT(value) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065968
train
v3
Sensor network script: Node: lightning | code: gst | fields: level, value, depth, unit Sensor: rainfall | fields: depth, level, reading, value Task: Get value from lightning where value exceeds the minimum depth from rainfall for the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065969
train
v3
Sensor network script: Node: rainfall | code: thr | fields: level, qc, ts, type Sensor: lightning | fields: lat, level, type, qc Task: Get value from rainfall where value exceeds the average value from lightning for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065970
train
v2
Sensor network script: Node: temperature | code: stn | fields: depth, level, unit, lon Sensor: wind_speed | fields: type, reading, qc, lat Task: Retrieve lon from temperature that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065971
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: lon, unit, depth, reading Sensor: snow_depth | fields: ts, type, reading, value Task: Get reading from cloud_cover where depth appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065972
train
v3
Sensor network script: Node: sunlight | code: prt | fields: lat, type, qc, lon Sensor: uv_index | fields: reading, value, qc, ts Task: Fetch lat from sunlight where value is greater than the total of reading in uv_index for matching qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065973
train
v3
Sensor network script: Node: humidity | code: prt | fields: lon, value, lat, level Sensor: temperature | fields: level, depth, ts, lat Task: Retrieve level from humidity with depth above the SUM(reading) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065974
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: ts, lon, qc, value Sensor: drought_index | fields: value, type, lat, level Task: Retrieve lat from soil_moisture that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065975
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: ts, unit, depth, qc Sensor: frost | fields: unit, reading, lat, qc Task: Retrieve lat from snow_depth whose qc is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065976
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: lon, unit, type, reading Sensor: rainfall | fields: type, lat, unit, lon Task: Retrieve depth from snow_depth that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065977
train
v2
Sensor network script: Node: turbidity | code: ref | fields: reading, unit, ts, level Sensor: sunlight | fields: unit, lat, ts, lon Task: Fetch lon from turbidity that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065978
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: level, qc, depth, lat Sensor: wind_speed | fields: type, reading, level, ts Task: Fetch lat from snow_depth where reading is greater than the maximum of depth in wind_speed for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065979
train
v2
Sensor network script: Node: air_quality | code: ref | fields: unit, reading, qc, lon Sensor: temperature | fields: ts, lat, qc, value Task: Get lon from air_quality where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065980
train
v2
Sensor network script: Node: pressure | code: clr | fields: type, reading, level, lon Sensor: frost | fields: lat, value, reading, lon Task: Get lon from pressure where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065981
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lat, value, lon, level Sensor: visibility | fields: reading, lat, lon, depth Task: Fetch reading from air_quality where depth exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065982
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: value, type, lat, unit Sensor: pressure | fields: type, level, value, lon Task: Retrieve lon from cloud_cover whose unit is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065983
train
v3
Sensor network script: Node: rainfall | code: mst | fields: lat, lon, reading, ts Sensor: humidity | fields: qc, lat, depth, ts Task: Retrieve lat from rainfall with value above the MIN(reading) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065984
train
v1
Sensor network script: Node: rainfall | code: mst | fields: value, lat, ts, type Sensor: humidity | fields: unit, reading, type, qc Task: Fetch depth from rainfall where unit exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065985
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: value, reading, ts, lat Sensor: lightning | fields: level, depth, ts, type Task: Get reading from snow_depth where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065986
train
v3
Sensor network script: Node: pressure | code: hub | fields: value, lat, unit, type Sensor: turbidity | fields: lat, value, lon, type Task: Get lat from pressure where depth exceeds the maximum value from turbidity for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065987
train
v3
Sensor network script: Node: turbidity | code: thr | fields: reading, value, lat, lon Sensor: rainfall | fields: level, value, type, lon Task: Fetch lon from turbidity where reading is greater than the total of value in rainfall for matching unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065988
train
v2
Sensor network script: Node: dew_point | code: gst | fields: ts, type, lat, depth Sensor: soil_moisture | fields: reading, qc, value, ts Task: Fetch value from dew_point that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065989
train
v1
Sensor network script: Node: uv_index | code: stn | fields: qc, level, unit, lon Sensor: turbidity | fields: qc, depth, type, reading Task: Fetch value from uv_index where depth exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065990
train
v2
Sensor network script: Node: rainfall | code: hub | fields: lat, value, type, reading Sensor: sunlight | fields: level, lat, ts, value Task: Fetch lat from rainfall that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065991
train
v2
Sensor network script: Node: lightning | code: ref | fields: ts, unit, type, qc Sensor: snow_depth | fields: value, level, unit, lat Task: Get reading from lightning where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065992
train
v2
Sensor network script: Node: drought_index | code: stn | fields: level, qc, lat, type Sensor: snow_depth | fields: type, unit, level, ts Task: Get value from drought_index where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065993
train
v2
Sensor network script: Node: turbidity | code: hub | fields: level, unit, qc, value Sensor: wind_speed | fields: lat, lon, ts, level Task: Retrieve depth from turbidity that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065994
train
v1
Sensor network script: Node: sunlight | code: mst | fields: lon, reading, depth, level Sensor: pressure | fields: value, ts, reading, type Task: Retrieve depth from sunlight whose ts is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065995
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: qc, reading, type, value Sensor: drought_index | fields: type, value, depth, reading Task: Fetch level from wind_speed where depth is greater than the count of of reading in drought_index for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065996
train
v1
Sensor network script: Node: drought_index | code: mst | fields: qc, value, lon, reading Sensor: soil_moisture | fields: qc, value, ts, depth Task: Fetch lon from drought_index where unit exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065997
train
v1
Sensor network script: Node: drought_index | code: clr | fields: ts, lon, level, qc Sensor: rainfall | fields: ts, reading, unit, lat Task: Retrieve reading from drought_index whose ts is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065998
train
v2
Sensor network script: Node: air_quality | code: prt | fields: reading, unit, lat, lon Sensor: lightning | fields: qc, lat, level, lon Task: Fetch depth from air_quality that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065999
train