variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: dew_point | code: ref | fields: lat, lon, ts, type Sensor: rainfall | fields: value, lon, ts, depth Task: Fetch level from dew_point where unit exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014800
train
v1
Sensor network script: Node: visibility | code: prt | fields: lat, lon, level, value Sensor: frost | fields: lat, unit, lon, value Task: Retrieve level from visibility whose qc is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014801
train
v3
Sensor network script: Node: uv_index | code: thr | fields: unit, type, depth, lat Sensor: rainfall | fields: reading, depth, value, lon Task: Get reading from uv_index where depth exceeds the minimum depth from rainfall for the same ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014802
train
v3
Sensor network script: Node: frost | code: mst | fields: lat, value, qc, ts Sensor: turbidity | fields: depth, lon, type, value Task: Retrieve reading from frost with reading above the AVG(reading) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014803
train
v1
Sensor network script: Node: evaporation | code: clr | fields: lat, value, reading, type Sensor: sunlight | fields: unit, level, lon, depth Task: Fetch reading from evaporation where qc exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014804
train
v3
Sensor network script: Node: drought_index | code: prt | fields: unit, depth, reading, ts Sensor: dew_point | fields: qc, unit, value, level Task: Retrieve reading from drought_index with depth above the COUNT(value) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014805
train
v2
Sensor network script: Node: visibility | code: hub | fields: lat, depth, qc, type Sensor: sunlight | fields: depth, lat, unit, ts Task: Retrieve level from visibility that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014806
train
v1
Sensor network script: Node: sunlight | code: clr | fields: ts, lat, unit, type Sensor: drought_index | fields: type, ts, lat, value Task: Retrieve lat from sunlight whose qc is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014807
train
v2
Sensor network script: Node: drought_index | code: ref | fields: type, qc, depth, value Sensor: humidity | fields: lon, ts, reading, unit Task: Get depth from drought_index where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014808
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: lon, value, level, reading Sensor: evaporation | fields: value, qc, reading, ts Task: Get reading from wind_speed where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014809
train
v3
Sensor network script: Node: frost | code: thr | fields: lon, reading, qc, depth Sensor: rainfall | fields: type, lat, value, unit Task: Retrieve value from frost with depth above the AVG(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014810
train
v2
Sensor network script: Node: evaporation | code: stn | fields: lat, reading, qc, level Sensor: turbidity | fields: lat, ts, reading, lon Task: Get depth from evaporation where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014811
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lat, value, level, depth Sensor: frost | fields: lat, ts, reading, depth Task: Retrieve lon from drought_index whose depth is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014812
train
v1
Sensor network script: Node: drought_index | code: clr | fields: unit, lon, value, qc Sensor: soil_moisture | fields: qc, lon, value, type Task: Retrieve lat from drought_index whose qc is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014813
train
v2
Sensor network script: Node: dew_point | code: hub | fields: lat, type, value, depth Sensor: snow_depth | fields: lon, type, value, qc Task: Get lat from dew_point where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014814
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lon, value, reading, depth Sensor: soil_moisture | fields: reading, lon, lat, type Task: Fetch level from sunlight where reading is greater than the minimum of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014815
train
v2
Sensor network script: Node: pressure | code: stn | fields: depth, reading, unit, type Sensor: temperature | fields: lon, qc, ts, level Task: Get level from pressure where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014816
train
v1
Sensor network script: Node: uv_index | code: thr | fields: value, type, qc, unit Sensor: snow_depth | fields: value, qc, depth, unit Task: Fetch depth from uv_index where ts exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014817
train
v3
Sensor network script: Node: evaporation | code: hub | fields: ts, reading, level, qc Sensor: wind_speed | fields: lon, type, depth, level Task: Retrieve reading from evaporation with reading above the AVG(value) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014818
train
v1
Sensor network script: Node: evaporation | code: stn | fields: ts, depth, qc, lat Sensor: turbidity | fields: qc, lon, level, value Task: Retrieve lon from evaporation whose depth is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014819
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: lon, lat, qc, reading Sensor: drought_index | fields: depth, reading, level, value Task: Retrieve level from cloud_cover that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014820
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: ts, level, qc, value Sensor: evaporation | fields: type, reading, ts, qc Task: Retrieve level from snow_depth whose type is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014821
train
v2
Sensor network script: Node: humidity | code: mst | fields: type, qc, lon, level Sensor: evaporation | fields: qc, reading, type, value Task: Fetch level from humidity that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014822
train
v1
Sensor network script: Node: rainfall | code: mst | fields: lon, lat, value, unit Sensor: drought_index | fields: reading, value, unit, lat Task: Get lat from rainfall where qc appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014823
train
v2
Sensor network script: Node: dew_point | code: clr | fields: type, ts, reading, qc Sensor: frost | fields: unit, value, level, lat Task: Get value from dew_point where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014824
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lon, unit, qc, type Sensor: cloud_cover | fields: value, level, type, qc Task: Fetch value from rainfall where unit exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014825
train
v2
Sensor network script: Node: sunlight | code: gst | fields: value, qc, unit, ts Sensor: temperature | fields: ts, unit, lat, lon Task: Fetch value from sunlight that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014826
train
v1
Sensor network script: Node: lightning | code: gst | fields: value, depth, lon, unit Sensor: drought_index | fields: type, lat, reading, level Task: Get level from lightning where type appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014827
train
v1
Sensor network script: Node: visibility | code: thr | fields: reading, lon, type, depth Sensor: sunlight | fields: ts, reading, type, unit Task: Fetch depth from visibility where ts exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014828
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: unit, ts, depth, level Sensor: drought_index | fields: qc, value, type, lat Task: Retrieve lat from wind_speed with reading above the COUNT(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014829
train
v3
Sensor network script: Node: uv_index | code: ref | fields: ts, qc, lon, level Sensor: temperature | fields: unit, value, lat, ts Task: Get lat from uv_index where value exceeds the minimum value from temperature for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014830
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lat, qc, type, depth Sensor: rainfall | fields: ts, lon, value, lat Task: Retrieve value from dew_point with reading above the MIN(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014831
train
v1
Sensor network script: Node: air_quality | code: ref | fields: qc, unit, ts, lon Sensor: temperature | fields: type, lon, qc, lat Task: Fetch lat from air_quality where ts exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014832
train
v1
Sensor network script: Node: temperature | code: gst | fields: unit, qc, ts, depth Sensor: sunlight | fields: ts, depth, value, lon Task: Fetch level from temperature where depth exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014833
train
v1
Sensor network script: Node: dew_point | code: mst | fields: unit, ts, depth, reading Sensor: drought_index | fields: value, reading, lon, level Task: Fetch lon from dew_point where qc exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014834
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: lat, level, qc, unit Sensor: wind_speed | fields: depth, reading, qc, lon Task: Get reading from soil_moisture where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014835
train
v1
Sensor network script: Node: pressure | code: ref | fields: level, reading, unit, depth Sensor: soil_moisture | fields: depth, level, lon, type Task: Retrieve depth from pressure whose type is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014836
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: value, unit, level, lon Sensor: visibility | fields: qc, unit, ts, lon Task: Retrieve lat from soil_moisture with value above the COUNT(reading) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014837
train
v3
Sensor network script: Node: dew_point | code: prt | fields: ts, reading, lat, level Sensor: drought_index | fields: ts, lat, value, level Task: Retrieve reading from dew_point with reading above the MIN(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014838
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: value, qc, lat, reading Sensor: lightning | fields: level, lon, unit, qc Task: Get depth from wind_speed where depth exceeds the maximum value from lightning for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014839
train
v1
Sensor network script: Node: evaporation | code: mst | fields: depth, ts, level, reading Sensor: visibility | fields: qc, lat, lon, type Task: Retrieve lat from evaporation whose unit is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014840
train
v3
Sensor network script: Node: rainfall | code: thr | fields: ts, depth, value, reading Sensor: lightning | fields: lat, qc, depth, lon Task: Get value from rainfall where reading exceeds the average depth from lightning for the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014841
train
v2
Sensor network script: Node: drought_index | code: ref | fields: reading, type, qc, depth Sensor: lightning | fields: value, unit, type, lon Task: Retrieve reading from drought_index that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014842
train
v3
Sensor network script: Node: frost | code: prt | fields: unit, type, reading, ts Sensor: visibility | fields: level, depth, type, unit Task: Get reading from frost where depth exceeds the minimum reading from visibility for the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014843
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: level, unit, qc, ts Sensor: temperature | fields: lat, level, value, lon Task: Get level from snow_depth where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014844
train
v1
Sensor network script: Node: turbidity | code: hub | fields: level, qc, reading, unit Sensor: sunlight | fields: level, depth, lat, reading Task: Fetch reading from turbidity where ts exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014845
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: lon, level, lat, reading Sensor: frost | fields: ts, level, reading, qc Task: Fetch reading from snow_depth where depth is greater than the maximum of reading in frost for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014846
train
v2
Sensor network script: Node: air_quality | code: hub | fields: ts, depth, type, unit Sensor: visibility | fields: qc, type, unit, depth Task: Retrieve depth from air_quality that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014847
train
v2
Sensor network script: Node: dew_point | code: clr | fields: qc, type, ts, value Sensor: rainfall | fields: unit, reading, value, qc Task: Get depth from dew_point where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014848
train
v2
Sensor network script: Node: sunlight | code: stn | fields: type, value, ts, depth Sensor: rainfall | fields: value, level, lon, qc Task: Fetch lat from sunlight that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014849
train
v3
Sensor network script: Node: humidity | code: ref | fields: lat, level, lon, reading Sensor: temperature | fields: value, reading, level, lon Task: Get level from humidity where depth exceeds the total reading from temperature for the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014850
train
v2
Sensor network script: Node: visibility | code: prt | fields: lat, value, depth, ts Sensor: dew_point | fields: ts, value, unit, level Task: Fetch level from visibility that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014851
train
v1
Sensor network script: Node: lightning | code: hub | fields: level, lat, reading, lon Sensor: humidity | fields: lat, level, type, qc Task: Retrieve reading from lightning whose qc is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014852
train
v3
Sensor network script: Node: evaporation | code: ref | fields: depth, lat, ts, reading Sensor: frost | fields: level, lon, value, lat Task: Fetch reading from evaporation where value is greater than the minimum of value in frost for matching unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014853
train
v3
Sensor network script: Node: drought_index | code: thr | fields: value, qc, lon, ts Sensor: air_quality | fields: value, depth, type, qc Task: Get depth from drought_index where value exceeds the average value from air_quality for the same ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014854
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lon, value, reading, lat Sensor: pressure | fields: qc, unit, type, depth Task: Get level from wind_speed where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014855
train
v2
Sensor network script: Node: temperature | code: prt | fields: level, type, reading, unit Sensor: turbidity | fields: value, lon, reading, level Task: Fetch level from temperature that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014856
train
v3
Sensor network script: Node: dew_point | code: mst | fields: ts, type, lat, value Sensor: evaporation | fields: value, reading, lon, ts Task: Get level from dew_point where reading exceeds the total value from evaporation for the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014857
train
v3
Sensor network script: Node: lightning | code: clr | fields: reading, value, type, level Sensor: cloud_cover | fields: value, reading, unit, type Task: Fetch level from lightning where reading is greater than the average of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014858
train
v3
Sensor network script: Node: humidity | code: mst | fields: ts, lat, unit, depth Sensor: temperature | fields: qc, depth, level, ts Task: Fetch value from humidity where reading is greater than the total of value in temperature for matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014859
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: unit, lon, level, depth Sensor: frost | fields: lon, ts, reading, lat Task: Get depth from soil_moisture where reading exceeds the minimum value from frost for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014860
train
v2
Sensor network script: Node: air_quality | code: mst | fields: depth, lat, lon, reading Sensor: snow_depth | fields: unit, reading, depth, level Task: Fetch reading from air_quality that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014861
train
v3
Sensor network script: Node: air_quality | code: stn | fields: type, depth, reading, ts Sensor: wind_speed | fields: unit, ts, value, depth Task: Fetch level from air_quality where depth is greater than the average of depth in wind_speed for matching qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014862
train
v2
Sensor network script: Node: frost | code: clr | fields: ts, depth, unit, lat Sensor: sunlight | fields: ts, qc, value, lat Task: Get lat from frost where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014863
train
v3
Sensor network script: Node: sunlight | code: ref | fields: reading, ts, value, depth Sensor: wind_speed | fields: unit, reading, qc, ts Task: Get depth from sunlight where value exceeds the total depth from wind_speed for the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014864
train
v1
Sensor network script: Node: dew_point | code: gst | fields: value, reading, level, unit Sensor: sunlight | fields: unit, depth, lon, ts Task: Get value from dew_point where depth appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014865
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: qc, lon, level, unit Sensor: air_quality | fields: lon, depth, level, reading Task: Fetch reading from wind_speed where type exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014866
train
v2
Sensor network script: Node: air_quality | code: clr | fields: level, unit, reading, qc Sensor: wind_speed | fields: reading, level, lon, ts Task: Get lon from air_quality where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014867
train
v2
Sensor network script: Node: drought_index | code: mst | fields: qc, type, unit, value Sensor: pressure | fields: type, lat, value, lon Task: Fetch depth 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="depth", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014868
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: unit, lat, qc, ts Sensor: sunlight | fields: qc, reading, lat, level Task: Fetch lat from snow_depth where reading is greater than the total of value in sunlight for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014869
train
v2
Sensor network script: Node: sunlight | code: hub | fields: depth, value, lon, reading Sensor: frost | fields: ts, lon, type, unit Task: Retrieve value from sunlight that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014870
train
v1
Sensor network script: Node: frost | code: clr | fields: unit, type, depth, reading Sensor: sunlight | fields: lon, ts, value, type Task: Retrieve value from frost whose unit is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014871
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: ts, level, qc, type Sensor: evaporation | fields: depth, ts, qc, lat Task: Retrieve lon from snow_depth whose type is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014872
train
v1
Sensor network script: Node: pressure | code: hub | fields: qc, unit, lon, value Sensor: uv_index | fields: unit, ts, lat, value Task: Fetch depth from pressure where qc exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014873
train
v3
Sensor network script: Node: turbidity | code: hub | fields: type, lat, ts, level Sensor: visibility | fields: level, unit, lat, qc Task: Fetch lon from turbidity where value is greater than the maximum of value in visibility for matching ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014874
train
v3
Sensor network script: Node: dew_point | code: hub | fields: qc, unit, lat, depth Sensor: wind_speed | fields: value, qc, type, reading Task: Fetch value from dew_point where value is greater than the average of value in wind_speed for matching type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014875
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: unit, lon, ts, level Sensor: temperature | fields: qc, ts, lon, type Task: Get lat from cloud_cover where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014876
train
v3
Sensor network script: Node: dew_point | code: thr | fields: reading, depth, lon, ts Sensor: evaporation | fields: lat, value, qc, level Task: Get reading from dew_point where reading exceeds the maximum value from evaporation for the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014877
train
v1
Sensor network script: Node: temperature | code: mst | fields: lon, unit, reading, level Sensor: evaporation | fields: reading, type, unit, value Task: Fetch lat from temperature where qc exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014878
train
v1
Sensor network script: Node: drought_index | code: ref | fields: type, reading, value, level Sensor: cloud_cover | fields: depth, reading, ts, type Task: Retrieve lat from drought_index whose depth is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014879
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: lat, lon, ts, qc Sensor: frost | fields: qc, reading, unit, depth Task: Get value from snow_depth where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014880
train
v1
Sensor network script: Node: sunlight | code: stn | fields: level, lat, depth, ts Sensor: drought_index | fields: reading, unit, lon, lat Task: Fetch reading from sunlight where qc exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014881
train
v3
Sensor network script: Node: air_quality | code: hub | fields: type, ts, value, depth Sensor: evaporation | fields: reading, ts, unit, depth Task: Retrieve level from air_quality with depth above the SUM(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014882
train
v1
Sensor network script: Node: drought_index | code: stn | fields: level, type, depth, qc Sensor: snow_depth | fields: depth, lat, value, level Task: Retrieve lat from drought_index whose qc is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014883
train
v1
Sensor network script: Node: rainfall | code: hub | fields: unit, lat, type, depth Sensor: evaporation | fields: ts, type, lon, lat Task: Retrieve lon from rainfall whose ts is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014884
train
v3
Sensor network script: Node: temperature | code: ref | fields: value, qc, reading, lat Sensor: cloud_cover | fields: lat, lon, reading, value Task: Retrieve lat from temperature with depth above the AVG(value) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014885
train
v3
Sensor network script: Node: lightning | code: prt | fields: lat, unit, level, ts Sensor: dew_point | fields: unit, reading, type, level Task: Retrieve reading from lightning with depth above the MIN(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014886
train
v1
Sensor network script: Node: frost | code: gst | fields: depth, unit, qc, type Sensor: turbidity | fields: lat, qc, unit, ts Task: Retrieve reading from frost whose unit is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014887
train
v1
Sensor network script: Node: air_quality | code: thr | fields: reading, type, value, depth Sensor: cloud_cover | fields: ts, type, depth, value Task: Get reading from air_quality where depth appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014888
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, type, depth, qc Sensor: cloud_cover | fields: value, depth, reading, ts Task: Get lat from drought_index where value exceeds the average value from cloud_cover for the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014889
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: lat, lon, type, value Sensor: uv_index | fields: type, ts, unit, reading Task: Get lon from wind_speed where depth exceeds the average reading from uv_index for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014890
train
v2
Sensor network script: Node: turbidity | code: thr | fields: value, lon, lat, ts Sensor: cloud_cover | fields: ts, value, type, qc Task: Fetch value from turbidity that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014891
train
v3
Sensor network script: Node: lightning | code: thr | fields: value, depth, type, qc Sensor: evaporation | fields: qc, depth, level, ts Task: Fetch level from lightning where depth is greater than the average of depth in evaporation for matching type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014892
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: value, reading, ts, level Sensor: sunlight | fields: reading, lat, unit, level Task: Fetch level from soil_moisture where depth is greater than the count of of value in sunlight for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014893
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, lat, qc, value Sensor: humidity | fields: reading, lon, lat, value Task: Retrieve lat from sunlight whose ts is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014894
train
v3
Sensor network script: Node: humidity | code: mst | fields: lon, ts, qc, value Sensor: snow_depth | fields: depth, reading, lat, unit Task: Fetch level from humidity where depth is greater than the maximum of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014895
train
v2
Sensor network script: Node: dew_point | code: ref | fields: level, lat, unit, qc Sensor: drought_index | fields: lon, reading, lat, unit Task: Fetch lon from dew_point that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014896
train
v2
Sensor network script: Node: lightning | code: ref | fields: lat, depth, value, type Sensor: cloud_cover | fields: reading, depth, value, ts Task: Get level from lightning where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014897
train
v3
Sensor network script: Node: temperature | code: prt | fields: level, ts, reading, type Sensor: humidity | fields: lat, type, ts, level Task: Fetch reading from temperature where reading is greater than the average of depth in humidity for matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014898
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: unit, depth, lat, qc Sensor: wind_speed | fields: ts, type, level, lon Task: Get lon from cloud_cover where value exceeds the minimum value from wind_speed for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014899
train