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: frost | code: mst | fields: level, type, value, qc Sensor: uv_index | fields: ts, level, type, lon Task: Get depth from frost where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017800
train
v1
Sensor network script: Node: dew_point | code: stn | fields: unit, value, lon, lat Sensor: temperature | fields: level, depth, reading, ts Task: Get lon from dew_point where ts appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017801
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: lon, lat, reading, value Sensor: turbidity | fields: reading, type, qc, unit Task: Retrieve depth from soil_moisture that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017802
train
v1
Sensor network script: Node: frost | code: gst | fields: depth, value, reading, level Sensor: uv_index | fields: type, ts, qc, lat Task: Retrieve lat from frost whose ts is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017803
train
v2
Sensor network script: Node: evaporation | code: prt | fields: qc, level, lon, ts Sensor: humidity | fields: ts, qc, type, level Task: Get value from evaporation where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017804
train
v3
Sensor network script: Node: visibility | code: gst | fields: lat, value, level, qc Sensor: frost | fields: value, qc, level, lat Task: Get lon from visibility where depth exceeds the minimum depth from frost for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017805
train
v1
Sensor network script: Node: dew_point | code: ref | fields: value, lat, level, lon Sensor: sunlight | fields: level, depth, lat, type Task: Fetch value from dew_point where unit exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017806
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: depth, reading, unit, qc Sensor: sunlight | fields: type, lat, unit, qc Task: Get lat from snow_depth where qc appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017807
train
v3
Sensor network script: Node: rainfall | code: hub | fields: level, type, depth, ts Sensor: dew_point | fields: value, reading, ts, lon Task: Fetch level from rainfall where depth is greater than the maximum of depth in dew_point for matching ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017808
train
v2
Sensor network script: Node: uv_index | code: mst | fields: reading, ts, level, unit Sensor: snow_depth | fields: reading, level, unit, value Task: Get value from uv_index where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017809
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: unit, lon, type, value Sensor: frost | fields: lon, type, unit, qc Task: Retrieve lat from soil_moisture whose ts is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017810
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: reading, level, unit, value Sensor: rainfall | fields: lat, unit, lon, ts Task: Fetch lon from cloud_cover where qc exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017811
train
v3
Sensor network script: Node: visibility | code: mst | fields: qc, depth, reading, value Sensor: drought_index | fields: unit, ts, lat, depth Task: Get lon from visibility where depth exceeds the count of depth from drought_index for the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017812
train
v3
Sensor network script: Node: humidity | code: hub | fields: unit, ts, type, level Sensor: rainfall | fields: unit, depth, reading, ts Task: Fetch lon from humidity where value is greater than the minimum of reading in rainfall for matching depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017813
train
v2
Sensor network script: Node: visibility | code: prt | fields: lon, type, qc, reading Sensor: wind_speed | fields: level, lat, qc, unit Task: Retrieve reading from visibility that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017814
train
v1
Sensor network script: Node: dew_point | code: clr | fields: qc, lon, ts, level Sensor: sunlight | fields: type, lat, value, lon Task: Fetch lat from dew_point where ts exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017815
train
v3
Sensor network script: Node: sunlight | code: gst | fields: value, unit, level, ts Sensor: air_quality | fields: depth, lat, reading, lon Task: Fetch lon from sunlight where value is greater than the maximum of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017816
train
v2
Sensor network script: Node: air_quality | code: stn | fields: unit, depth, lon, ts Sensor: temperature | fields: ts, qc, reading, lat Task: Get value from air_quality where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "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_017817
train
v3
Sensor network script: Node: uv_index | code: thr | fields: level, reading, ts, lat Sensor: snow_depth | fields: lon, depth, qc, reading Task: Retrieve lon from uv_index with depth above the MIN(value) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017818
train
v3
Sensor network script: Node: visibility | code: hub | fields: qc, lat, unit, lon Sensor: pressure | fields: ts, reading, depth, value Task: Fetch lat from visibility where depth is greater than the average of reading in pressure for matching depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017819
train
v3
Sensor network script: Node: visibility | code: gst | fields: reading, type, level, qc Sensor: cloud_cover | fields: value, lon, unit, depth Task: Get lon from visibility where depth exceeds the count of value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017820
train
v2
Sensor network script: Node: frost | code: gst | fields: depth, ts, level, reading Sensor: snow_depth | fields: qc, type, lat, value Task: Retrieve reading from frost that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017821
train
v3
Sensor network script: Node: dew_point | code: stn | fields: value, qc, lat, type Sensor: frost | fields: value, lat, ts, unit Task: Get value from dew_point where value exceeds the count of reading from frost for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017822
train
v2
Sensor network script: Node: pressure | code: stn | fields: reading, ts, qc, level Sensor: humidity | fields: ts, qc, type, level Task: Fetch depth from pressure that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017823
train
v1
Sensor network script: Node: lightning | code: thr | fields: lat, ts, depth, type Sensor: drought_index | fields: qc, type, lat, depth Task: Retrieve value from lightning whose depth is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017824
train
v1
Sensor network script: Node: rainfall | code: prt | fields: depth, lat, value, reading Sensor: sunlight | fields: depth, level, lon, reading Task: Fetch level from rainfall where unit exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017825
train
v2
Sensor network script: Node: uv_index | code: clr | fields: depth, qc, level, value Sensor: snow_depth | fields: depth, unit, lat, level Task: Fetch reading from uv_index that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017826
train
v2
Sensor network script: Node: temperature | code: hub | fields: ts, lon, unit, type Sensor: snow_depth | fields: ts, reading, unit, depth Task: Retrieve lat from temperature that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017827
train
v1
Sensor network script: Node: dew_point | code: clr | fields: value, unit, ts, lon Sensor: evaporation | fields: ts, unit, lon, qc Task: Get level from dew_point where depth appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017828
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lat, type, reading, level Sensor: soil_moisture | fields: type, value, reading, unit Task: Fetch lon from rainfall where unit exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017829
train
v1
Sensor network script: Node: sunlight | code: stn | fields: level, qc, depth, value Sensor: wind_speed | fields: reading, value, lon, qc Task: Get level from sunlight where depth appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017830
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lon, type, qc, level Sensor: lightning | fields: depth, type, level, ts Task: Retrieve lat from snow_depth that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017831
train
v2
Sensor network script: Node: temperature | code: stn | fields: reading, lat, qc, ts Sensor: cloud_cover | fields: qc, unit, lon, level Task: Fetch value from temperature that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017832
train
v1
Sensor network script: Node: rainfall | code: clr | fields: type, value, reading, lat Sensor: temperature | fields: ts, type, value, reading Task: Get depth from rainfall where qc appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017833
train
v3
Sensor network script: Node: dew_point | code: clr | fields: type, depth, lat, unit Sensor: frost | fields: reading, depth, lon, type Task: Get lat from dew_point where reading exceeds the minimum depth from frost for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017834
train
v3
Sensor network script: Node: humidity | code: ref | fields: lat, value, ts, level Sensor: wind_speed | fields: depth, type, qc, reading Task: Fetch depth from humidity where reading is greater than the minimum of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "humidity", "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_017835
train
v3
Sensor network script: Node: frost | code: ref | fields: type, lon, qc, reading Sensor: cloud_cover | fields: type, reading, unit, value Task: Fetch value from frost where depth is greater than the total of reading in cloud_cover for matching unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017836
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: ts, value, depth, lat Sensor: air_quality | fields: level, lon, qc, ts Task: Get value from wind_speed where type appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017837
train
v2
Sensor network script: Node: turbidity | code: thr | fields: ts, reading, depth, type Sensor: cloud_cover | fields: unit, ts, value, level Task: Get level from turbidity where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017838
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: qc, value, ts, type Sensor: evaporation | fields: lon, lat, type, value Task: Retrieve lon from cloud_cover whose ts is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017839
train
v3
Sensor network script: Node: lightning | code: stn | fields: type, reading, qc, lat Sensor: temperature | fields: ts, type, lon, depth Task: Retrieve reading from lightning with depth above the MAX(depth) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017840
train
v2
Sensor network script: Node: frost | code: prt | fields: qc, reading, depth, ts Sensor: visibility | fields: lon, level, ts, lat Task: Fetch level from frost that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017841
train
v3
Sensor network script: Node: sunlight | code: ref | fields: level, value, qc, type Sensor: uv_index | fields: qc, ts, level, lat Task: Fetch lon from sunlight where value is greater than the average of depth in uv_index for matching qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017842
train
v2
Sensor network script: Node: dew_point | code: ref | fields: lon, depth, value, qc Sensor: humidity | fields: value, lon, type, unit Task: Fetch lat from dew_point that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017843
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: value, lat, unit, depth Sensor: lightning | fields: lon, ts, qc, depth Task: Retrieve reading from soil_moisture that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017844
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: lat, type, qc, value Sensor: uv_index | fields: qc, lon, value, level Task: Fetch lon from cloud_cover where ts exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017845
train
v3
Sensor network script: Node: uv_index | code: stn | fields: unit, qc, ts, value Sensor: snow_depth | fields: reading, type, value, depth Task: Get level from uv_index where value exceeds the average reading from snow_depth for the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017846
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: unit, qc, reading, value Sensor: humidity | fields: reading, qc, value, level Task: Retrieve lon from cloud_cover that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017847
train
v2
Sensor network script: Node: humidity | code: stn | fields: qc, lat, unit, value Sensor: air_quality | fields: reading, unit, qc, lat Task: Get lat from humidity where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017848
train
v3
Sensor network script: Node: pressure | code: prt | fields: unit, level, reading, lon Sensor: drought_index | fields: unit, level, qc, ts Task: Get reading from pressure where value exceeds the total reading from drought_index for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017849
train
v3
Sensor network script: Node: dew_point | code: mst | fields: depth, unit, type, qc Sensor: uv_index | fields: lon, unit, qc, lat Task: Get reading from dew_point where depth exceeds the minimum reading from uv_index for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017850
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, lat, lon, unit Sensor: wind_speed | fields: lon, type, level, unit Task: Retrieve lon from snow_depth that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017851
train
v3
Sensor network script: Node: humidity | code: clr | fields: unit, value, qc, level Sensor: drought_index | fields: unit, level, lat, lon Task: Retrieve depth from humidity with reading above the MIN(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017852
train
v3
Sensor network script: Node: humidity | code: hub | fields: lat, reading, qc, ts Sensor: soil_moisture | fields: type, reading, depth, value Task: Fetch level from humidity where value is greater than the maximum of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017853
train
v3
Sensor network script: Node: pressure | code: hub | fields: depth, lon, level, unit Sensor: lightning | fields: type, qc, level, value Task: Retrieve lat from pressure with reading above the AVG(depth) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017854
train
v2
Sensor network script: Node: drought_index | code: thr | fields: value, lon, unit, type Sensor: snow_depth | fields: level, lat, lon, type Task: Retrieve level from drought_index that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017855
train
v2
Sensor network script: Node: rainfall | code: gst | fields: ts, depth, unit, reading Sensor: pressure | fields: lon, level, qc, depth Task: Fetch level from rainfall that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017856
train
v1
Sensor network script: Node: uv_index | code: hub | fields: value, qc, reading, lon Sensor: snow_depth | fields: depth, reading, type, ts Task: Retrieve lon from uv_index whose depth is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017857
train
v3
Sensor network script: Node: drought_index | code: mst | fields: value, type, ts, qc Sensor: lightning | fields: ts, type, value, lat Task: Get lon from drought_index where reading exceeds the average depth from lightning for the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017858
train
v1
Sensor network script: Node: rainfall | code: prt | fields: level, depth, value, unit Sensor: soil_moisture | fields: qc, value, reading, ts Task: Get reading from rainfall where type appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017859
train
v2
Sensor network script: Node: rainfall | code: ref | fields: type, lon, ts, level Sensor: lightning | fields: qc, depth, type, reading Task: Get lon from rainfall where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017860
train
v1
Sensor network script: Node: dew_point | code: ref | fields: lon, lat, value, unit Sensor: drought_index | fields: level, lat, ts, value Task: Retrieve value from dew_point whose type is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017861
train
v3
Sensor network script: Node: lightning | code: stn | fields: lat, lon, unit, value Sensor: soil_moisture | fields: lon, type, lat, reading Task: Get reading from lightning where value exceeds the maximum depth from soil_moisture for the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017862
train
v2
Sensor network script: Node: rainfall | code: gst | fields: qc, value, reading, depth Sensor: temperature | fields: reading, unit, lon, ts Task: Retrieve depth from rainfall that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017863
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: reading, value, unit, lon Sensor: visibility | fields: qc, ts, unit, type Task: Fetch depth from cloud_cover where unit exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017864
train
v1
Sensor network script: Node: uv_index | code: ref | fields: reading, unit, qc, lat Sensor: lightning | fields: depth, lat, type, ts Task: Retrieve lon from uv_index whose qc is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017865
train
v2
Sensor network script: Node: frost | code: thr | fields: ts, type, unit, depth Sensor: evaporation | fields: level, lat, qc, unit Task: Retrieve lat from frost that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017866
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: value, qc, level, lat Sensor: turbidity | fields: lon, ts, value, level Task: Retrieve lon from soil_moisture with value above the AVG(reading) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017867
train
v1
Sensor network script: Node: rainfall | code: thr | fields: lat, value, qc, lon Sensor: cloud_cover | fields: reading, lat, depth, qc Task: Get reading from rainfall where ts appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017868
train
v2
Sensor network script: Node: evaporation | code: thr | fields: level, unit, type, reading Sensor: frost | fields: type, unit, level, lat Task: Fetch lat from evaporation that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017869
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: type, reading, depth, unit Sensor: frost | fields: unit, type, reading, level Task: Fetch lat from cloud_cover where value is greater than the total of value in frost for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017870
train
v3
Sensor network script: Node: temperature | code: mst | fields: unit, ts, type, value Sensor: rainfall | fields: level, depth, type, value Task: Retrieve lon from temperature with depth above the AVG(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017871
train
v2
Sensor network script: Node: humidity | code: ref | fields: value, unit, level, lon Sensor: rainfall | fields: ts, unit, lon, level Task: Get depth from humidity where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017872
train
v3
Sensor network script: Node: lightning | code: hub | fields: qc, unit, lon, level Sensor: temperature | fields: depth, lon, reading, unit Task: Get value from lightning where reading exceeds the total value from temperature for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017873
train
v2
Sensor network script: Node: temperature | code: gst | fields: qc, lat, reading, ts Sensor: air_quality | fields: lon, type, value, reading Task: Fetch lat from temperature that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017874
train
v2
Sensor network script: Node: humidity | code: thr | fields: type, reading, depth, ts Sensor: snow_depth | fields: value, type, lon, reading Task: Retrieve lat from humidity that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017875
train
v2
Sensor network script: Node: rainfall | code: stn | fields: reading, unit, type, value Sensor: cloud_cover | fields: qc, value, type, reading Task: Retrieve level from rainfall that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017876
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: ts, type, value, lat Sensor: dew_point | fields: reading, level, lat, unit Task: Retrieve level from snow_depth whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017877
train
v3
Sensor network script: Node: temperature | code: hub | fields: level, reading, lon, qc Sensor: drought_index | fields: level, lon, reading, ts Task: Retrieve lon from temperature with reading above the SUM(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017878
train
v1
Sensor network script: Node: turbidity | code: gst | fields: qc, level, reading, lon Sensor: temperature | fields: level, ts, type, value Task: Get lat from turbidity where depth appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017879
train
v3
Sensor network script: Node: visibility | code: mst | fields: type, value, reading, lat Sensor: snow_depth | fields: value, qc, lat, unit Task: Fetch reading from visibility where reading is greater than the average of depth in snow_depth for matching type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017880
train
v1
Sensor network script: Node: air_quality | code: thr | fields: type, unit, lon, qc Sensor: uv_index | fields: lat, qc, level, value Task: Get lat from air_quality where unit appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017881
train
v1
Sensor network script: Node: humidity | code: mst | fields: unit, value, depth, ts Sensor: snow_depth | fields: ts, type, depth, lon Task: Retrieve level from humidity whose type is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017882
train
v1
Sensor network script: Node: pressure | code: stn | fields: level, type, unit, ts Sensor: temperature | fields: level, value, unit, depth Task: Retrieve depth from pressure whose ts is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017883
train
v1
Sensor network script: Node: drought_index | code: prt | fields: depth, lon, reading, type Sensor: snow_depth | fields: qc, lat, type, reading Task: Get depth from drought_index where qc appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017884
train
v1
Sensor network script: Node: dew_point | code: clr | fields: value, depth, qc, reading Sensor: drought_index | fields: depth, lon, value, lat Task: Get level from dew_point where qc appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017885
train
v2
Sensor network script: Node: turbidity | code: stn | fields: value, lat, depth, type Sensor: pressure | fields: value, reading, lat, lon Task: Retrieve depth from turbidity that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017886
train
v3
Sensor network script: Node: dew_point | code: mst | fields: type, unit, qc, reading Sensor: temperature | fields: depth, ts, type, lon Task: Get value from dew_point where depth exceeds the total reading from temperature for the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017887
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: level, value, reading, unit Sensor: cloud_cover | fields: depth, reading, value, ts Task: Get lat from snow_depth where reading exceeds the maximum value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017888
train
v2
Sensor network script: Node: lightning | code: gst | fields: type, level, ts, qc Sensor: humidity | fields: lon, unit, ts, reading Task: Get value from lightning where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017889
train
v2
Sensor network script: Node: turbidity | code: hub | fields: reading, unit, lon, ts Sensor: uv_index | fields: unit, value, depth, type Task: Fetch lat from turbidity that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017890
train
v3
Sensor network script: Node: frost | code: stn | fields: reading, type, lat, lon Sensor: rainfall | fields: reading, type, lon, depth Task: Retrieve value from frost with reading above the COUNT(depth) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017891
train
v1
Sensor network script: Node: sunlight | code: stn | fields: value, level, qc, depth Sensor: wind_speed | fields: type, reading, value, unit Task: Get lon from sunlight where type appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017892
train
v2
Sensor network script: Node: evaporation | code: stn | fields: type, lon, qc, lat Sensor: lightning | fields: depth, value, unit, ts Task: Fetch reading from evaporation that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017893
train
v3
Sensor network script: Node: humidity | code: ref | fields: level, lon, ts, depth Sensor: temperature | fields: lon, depth, lat, value Task: Get lon from humidity where value exceeds the maximum reading from temperature for the same depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017894
train
v1
Sensor network script: Node: air_quality | code: gst | fields: depth, reading, ts, lat Sensor: temperature | fields: depth, unit, ts, value Task: Get value from air_quality where depth appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017895
train
v1
Sensor network script: Node: temperature | code: mst | fields: ts, lon, depth, lat Sensor: uv_index | fields: reading, type, lon, level Task: Fetch lon from temperature where depth exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017896
train
v3
Sensor network script: Node: temperature | code: thr | fields: depth, value, qc, unit Sensor: evaporation | fields: value, level, depth, lat Task: Fetch lat from temperature where reading is greater than the minimum of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017897
train
v1
Sensor network script: Node: rainfall | code: mst | fields: reading, unit, lon, lat Sensor: sunlight | fields: value, level, reading, unit Task: Fetch value from rainfall where unit exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017898
train
v1
Sensor network script: Node: lightning | code: thr | fields: unit, value, reading, depth Sensor: humidity | fields: unit, depth, type, qc Task: Fetch level from lightning where unit exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017899
train