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: evaporation | code: thr | fields: unit, ts, lon, value Sensor: snow_depth | fields: lat, level, unit, value Task: Fetch depth from evaporation where depth exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004800
train
v1
Sensor network script: Node: uv_index | code: prt | fields: ts, type, value, depth Sensor: evaporation | fields: unit, lon, reading, qc Task: Get lat from uv_index where unit appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004801
train
v2
Sensor network script: Node: frost | code: ref | fields: level, ts, lat, value Sensor: dew_point | fields: ts, unit, qc, reading Task: Get lon from frost where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004802
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: qc, depth, level, lat Sensor: dew_point | fields: unit, type, reading, lon Task: Retrieve lat from wind_speed that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004803
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: value, type, depth, reading Sensor: humidity | fields: ts, unit, type, reading Task: Get level from snow_depth where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004804
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lon, qc, type, ts Sensor: rainfall | fields: unit, level, ts, qc Task: Get level from uv_index where reading exceeds the average value from rainfall for the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004805
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: value, ts, level, lon Sensor: rainfall | fields: qc, lat, unit, type Task: Fetch level from snow_depth where reading is greater than the total of value in rainfall for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004806
train
v1
Sensor network script: Node: rainfall | code: prt | fields: depth, lat, qc, value Sensor: dew_point | fields: level, type, reading, qc Task: Retrieve lat from rainfall whose depth is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004807
train
v3
Sensor network script: Node: uv_index | code: mst | fields: level, lat, lon, reading Sensor: turbidity | fields: unit, lon, ts, depth Task: Fetch value from uv_index where reading is greater than the count of of value in turbidity for matching unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004808
train
v3
Sensor network script: Node: drought_index | code: clr | fields: lat, depth, unit, qc Sensor: turbidity | fields: reading, value, lat, unit Task: Fetch lat from drought_index where value is greater than the average of value in turbidity for matching type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004809
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: ts, value, unit, type Sensor: snow_depth | fields: type, lon, value, unit Task: Retrieve depth from soil_moisture with value above the AVG(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004810
train
v2
Sensor network script: Node: uv_index | code: mst | fields: reading, unit, level, lon Sensor: lightning | fields: depth, lat, unit, qc Task: Get level from uv_index where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004811
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: unit, ts, qc, lat Sensor: air_quality | fields: reading, value, ts, lon Task: Fetch lon from cloud_cover where unit exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004812
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: qc, depth, reading, type Sensor: humidity | fields: unit, value, qc, depth Task: Retrieve value from soil_moisture with value above the COUNT(value) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004813
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: qc, lat, value, level Sensor: frost | fields: depth, reading, type, level Task: Retrieve depth from soil_moisture whose unit is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004814
train
v3
Sensor network script: Node: drought_index | code: gst | fields: ts, reading, type, qc Sensor: humidity | fields: type, unit, qc, level Task: Get depth from drought_index where value exceeds the average value from humidity for the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "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_004815
train
v3
Sensor network script: Node: air_quality | code: stn | fields: type, depth, lat, ts Sensor: temperature | fields: lon, qc, unit, value Task: Fetch lon from air_quality where value is greater than the maximum of depth in temperature for matching type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004816
train
v3
Sensor network script: Node: rainfall | code: stn | fields: reading, depth, ts, lat Sensor: wind_speed | fields: type, depth, reading, unit Task: Fetch lon from rainfall where depth is greater than the average of depth in wind_speed for matching ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004817
train
v3
Sensor network script: Node: sunlight | code: clr | fields: ts, lon, type, value Sensor: cloud_cover | fields: type, unit, value, lon Task: Retrieve lon from sunlight with reading above the MIN(value) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "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_004818
train
v1
Sensor network script: Node: lightning | code: ref | fields: reading, lon, lat, level Sensor: temperature | fields: lon, reading, value, unit Task: Get value from lightning where ts appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004819
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, reading, lat, ts Sensor: temperature | fields: ts, level, unit, value Task: Fetch reading from rainfall where reading is greater than the average of reading in temperature for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004820
train
v1
Sensor network script: Node: pressure | code: stn | fields: lat, lon, level, reading Sensor: soil_moisture | fields: level, depth, type, unit Task: Get reading from pressure where unit appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004821
train
v1
Sensor network script: Node: pressure | code: ref | fields: lat, type, reading, ts Sensor: evaporation | fields: type, depth, value, qc Task: Get depth from pressure where depth appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004822
train
v1
Sensor network script: Node: air_quality | code: thr | fields: lat, lon, reading, ts Sensor: sunlight | fields: level, type, ts, value Task: Get level from air_quality where ts appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004823
train
v1
Sensor network script: Node: uv_index | code: mst | fields: unit, depth, ts, type Sensor: pressure | fields: level, qc, depth, ts Task: Get lat from uv_index where unit appears in pressure readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004824
train
v1
Sensor network script: Node: visibility | code: mst | fields: reading, unit, depth, value Sensor: frost | fields: ts, lat, level, lon Task: Get depth from visibility where type appears in frost readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004825
train
v3
Sensor network script: Node: sunlight | code: ref | fields: depth, lon, level, qc Sensor: dew_point | fields: reading, ts, lat, unit Task: Retrieve lat from sunlight with reading above the MAX(value) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004826
train
v3
Sensor network script: Node: uv_index | code: ref | fields: qc, value, lon, reading Sensor: pressure | fields: unit, value, lat, qc Task: Fetch lat from uv_index where value is greater than the minimum of reading in pressure for matching ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004827
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: lon, depth, lat, ts Sensor: sunlight | fields: unit, lat, value, lon Task: Get value from soil_moisture where reading exceeds the count of depth from sunlight for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004828
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: qc, depth, lon, reading Sensor: visibility | fields: lon, type, depth, ts Task: Retrieve depth from cloud_cover whose type is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004829
train
v1
Sensor network script: Node: humidity | code: ref | fields: depth, qc, value, reading Sensor: cloud_cover | fields: reading, lon, depth, lat Task: Get level from humidity where type appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004830
train
v1
Sensor network script: Node: rainfall | code: ref | fields: ts, depth, lat, unit Sensor: evaporation | fields: type, qc, ts, unit Task: Retrieve lon from rainfall whose qc is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004831
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: reading, qc, ts, depth Sensor: visibility | fields: reading, lat, qc, lon Task: Fetch value from snow_depth where unit exists in visibility sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004832
train
v3
Sensor network script: Node: evaporation | code: hub | fields: lat, unit, value, ts Sensor: sunlight | fields: ts, unit, level, lat Task: Retrieve lon from evaporation with value above the AVG(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004833
train
v3
Sensor network script: Node: rainfall | code: prt | fields: unit, ts, level, lon Sensor: drought_index | fields: depth, lon, unit, type Task: Get lon from rainfall where value exceeds the minimum depth from drought_index for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004834
train
v2
Sensor network script: Node: turbidity | code: prt | fields: reading, lat, qc, unit Sensor: drought_index | fields: qc, lon, ts, type Task: Fetch lon from turbidity that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004835
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: level, qc, unit, ts Sensor: rainfall | fields: ts, lon, depth, qc Task: Fetch reading from snow_depth where depth is greater than the minimum of reading in rainfall for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004836
train
v3
Sensor network script: Node: sunlight | code: clr | fields: lat, qc, value, ts Sensor: temperature | fields: ts, type, value, lat Task: Retrieve reading from sunlight with value above the MAX(value) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004837
train
v2
Sensor network script: Node: turbidity | code: mst | fields: reading, ts, unit, depth Sensor: pressure | fields: type, lat, qc, depth Task: Get depth from turbidity where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004838
train
v3
Sensor network script: Node: lightning | code: clr | fields: unit, qc, type, ts Sensor: frost | fields: value, qc, ts, level Task: Get reading from lightning where reading exceeds the maximum reading from frost for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004839
train
v2
Sensor network script: Node: dew_point | code: prt | fields: lon, reading, type, level Sensor: visibility | fields: qc, ts, lon, reading Task: Fetch lat from dew_point that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004840
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lat, unit, qc, type Sensor: air_quality | fields: reading, lat, lon, value Task: Retrieve depth from wind_speed that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004841
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: lat, reading, qc, value Sensor: humidity | fields: lon, depth, type, ts Task: Get value from snow_depth where unit appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004842
train
v3
Sensor network script: Node: uv_index | code: gst | fields: unit, lon, lat, value Sensor: evaporation | fields: lat, level, unit, type Task: Fetch lat from uv_index where value is greater than the total of reading in evaporation for matching qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004843
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, ts, lon, type Sensor: pressure | fields: qc, depth, type, reading Task: Get value from air_quality where value exceeds the total reading from pressure for the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004844
train
v2
Sensor network script: Node: dew_point | code: stn | fields: type, value, reading, lon Sensor: evaporation | fields: level, unit, depth, lon Task: Fetch reading from dew_point that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004845
train
v3
Sensor network script: Node: rainfall | code: mst | fields: qc, type, depth, value Sensor: snow_depth | fields: depth, level, unit, qc Task: Fetch reading from rainfall where depth is greater than the maximum of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "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_004846
train
v3
Sensor network script: Node: temperature | code: gst | fields: value, lat, level, qc Sensor: air_quality | fields: unit, depth, level, value Task: Get lat from temperature where value exceeds the maximum reading from air_quality for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004847
train
v1
Sensor network script: Node: evaporation | code: gst | fields: depth, unit, type, value Sensor: cloud_cover | fields: value, ts, level, reading Task: Fetch depth from evaporation where ts exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004848
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: lon, ts, level, depth Sensor: dew_point | fields: ts, type, depth, value Task: Fetch value from soil_moisture where qc exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004849
train
v1
Sensor network script: Node: dew_point | code: ref | fields: reading, qc, value, type Sensor: pressure | fields: type, qc, value, lat Task: Fetch value from dew_point where ts exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004850
train
v2
Sensor network script: Node: sunlight | code: hub | fields: type, lon, lat, qc Sensor: cloud_cover | fields: type, depth, unit, ts Task: Get level from sunlight where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004851
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: reading, unit, level, value Sensor: uv_index | fields: ts, qc, depth, unit Task: Get lon from wind_speed where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004852
train
v3
Sensor network script: Node: temperature | code: ref | fields: unit, value, qc, lon Sensor: wind_speed | fields: lon, reading, depth, type Task: Retrieve depth from temperature with value above the COUNT(depth) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004853
train
v1
Sensor network script: Node: turbidity | code: thr | fields: unit, depth, type, ts Sensor: humidity | fields: reading, lon, ts, unit Task: Fetch level from turbidity where ts exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004854
train
v1
Sensor network script: Node: temperature | code: clr | fields: type, lat, value, reading Sensor: rainfall | fields: unit, qc, lon, lat Task: Retrieve depth from temperature whose depth is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004855
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: qc, ts, unit, value Sensor: rainfall | fields: depth, level, lon, lat Task: Get lat from cloud_cover where depth appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004856
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: depth, reading, lon, type Sensor: humidity | fields: level, unit, qc, depth Task: Retrieve reading from wind_speed that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004857
train
v3
Sensor network script: Node: frost | code: ref | fields: value, reading, depth, qc Sensor: evaporation | fields: lon, level, lat, unit Task: Fetch reading from frost where reading is greater than the total of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004858
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: ts, level, reading, unit Sensor: temperature | fields: lat, lon, reading, type Task: Fetch depth from snow_depth where qc exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004859
train
v3
Sensor network script: Node: rainfall | code: prt | fields: ts, qc, depth, reading Sensor: evaporation | fields: unit, level, lat, ts Task: Fetch lat from rainfall where value is greater than the minimum of depth in evaporation for matching type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004860
train
v2
Sensor network script: Node: rainfall | code: hub | fields: type, value, qc, reading Sensor: visibility | fields: depth, value, lon, level Task: Retrieve lon from rainfall that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004861
train
v3
Sensor network script: Node: drought_index | code: thr | fields: lat, qc, lon, value Sensor: evaporation | fields: reading, ts, level, lat Task: Retrieve level from drought_index with value above the MIN(depth) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004862
train
v1
Sensor network script: Node: humidity | code: ref | fields: ts, lat, type, reading Sensor: turbidity | fields: qc, ts, lon, value Task: Retrieve lat from humidity whose type is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004863
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: ts, lon, lat, qc Sensor: pressure | fields: qc, lat, lon, level Task: Fetch reading from wind_speed where type exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004864
train
v1
Sensor network script: Node: sunlight | code: thr | fields: value, unit, lat, type Sensor: wind_speed | fields: qc, lat, value, ts Task: Get value from sunlight where type appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004865
train
v1
Sensor network script: Node: visibility | code: thr | fields: ts, level, value, unit Sensor: uv_index | fields: lat, reading, depth, qc Task: Fetch depth from visibility where type exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004866
train
v2
Sensor network script: Node: temperature | code: hub | fields: depth, qc, lon, level Sensor: evaporation | fields: type, value, level, qc Task: Retrieve level from temperature that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004867
train
v2
Sensor network script: Node: turbidity | code: gst | fields: reading, type, lat, depth Sensor: cloud_cover | fields: lat, level, lon, qc Task: Retrieve lat from turbidity that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004868
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lon, qc, ts, depth Sensor: soil_moisture | fields: level, lat, qc, unit Task: Get lon from air_quality where unit appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004869
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: lat, qc, value, type Sensor: sunlight | fields: qc, level, lat, lon Task: Retrieve value from wind_speed that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004870
train
v1
Sensor network script: Node: rainfall | code: gst | fields: ts, lon, value, reading Sensor: lightning | fields: level, ts, depth, qc Task: Fetch lat from rainfall where qc exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004871
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: ts, type, level, unit Sensor: dew_point | fields: level, reading, unit, lon Task: Fetch lat from snow_depth that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004872
train
v2
Sensor network script: Node: visibility | code: hub | fields: unit, ts, reading, qc Sensor: snow_depth | fields: depth, lat, value, ts Task: Retrieve lat from visibility that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004873
train
v2
Sensor network script: Node: air_quality | code: prt | fields: qc, unit, reading, ts Sensor: evaporation | fields: reading, type, lon, depth Task: Get reading from air_quality where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004874
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: type, unit, lon, depth Sensor: humidity | fields: level, depth, value, unit Task: Fetch reading from soil_moisture where depth is greater than the average of depth in humidity for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004875
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: lat, reading, lon, value Sensor: humidity | fields: depth, unit, qc, value Task: Get level from soil_moisture where reading exceeds the total reading from humidity for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004876
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: depth, value, unit, reading Sensor: evaporation | fields: unit, qc, value, ts Task: Retrieve lon from snow_depth whose qc is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004877
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: depth, type, value, level Sensor: cloud_cover | fields: qc, ts, type, reading Task: Fetch lat from soil_moisture that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004878
train
v3
Sensor network script: Node: dew_point | code: ref | fields: qc, lat, depth, level Sensor: soil_moisture | fields: ts, value, qc, type Task: Retrieve level from dew_point with value above the SUM(value) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004879
train
v1
Sensor network script: Node: humidity | code: ref | fields: value, reading, depth, level Sensor: uv_index | fields: value, depth, lon, ts Task: Fetch value from humidity where depth exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004880
train
v1
Sensor network script: Node: temperature | code: clr | fields: lon, qc, lat, level Sensor: drought_index | fields: lon, reading, lat, value Task: Fetch lat from temperature where type exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004881
train
v2
Sensor network script: Node: sunlight | code: mst | fields: lon, depth, qc, level Sensor: humidity | fields: qc, lat, level, depth Task: Fetch value from sunlight that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004882
train
v2
Sensor network script: Node: humidity | code: gst | fields: depth, level, unit, lon Sensor: soil_moisture | fields: qc, reading, value, unit Task: Fetch lon from humidity that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004883
train
v1
Sensor network script: Node: uv_index | code: thr | fields: value, ts, depth, qc Sensor: dew_point | fields: reading, qc, depth, unit Task: Get depth from uv_index where unit appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004884
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: lat, level, lon, reading Sensor: evaporation | fields: value, depth, ts, lon Task: Get depth from snow_depth where depth appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004885
train
v3
Sensor network script: Node: visibility | code: ref | fields: qc, ts, lat, level Sensor: sunlight | fields: unit, lat, depth, qc Task: Get depth from visibility where reading exceeds the total reading from sunlight for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004886
train
v3
Sensor network script: Node: air_quality | code: mst | fields: lon, reading, unit, type Sensor: pressure | fields: qc, lat, depth, level Task: Get reading from air_quality where depth exceeds the minimum value from pressure for the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004887
train
v3
Sensor network script: Node: evaporation | code: stn | fields: ts, qc, unit, level Sensor: temperature | fields: lat, depth, level, value Task: Get value from evaporation where depth exceeds the count of value from temperature for the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004888
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: depth, lat, qc, unit Sensor: visibility | fields: qc, value, type, ts Task: Get reading from soil_moisture where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004889
train
v1
Sensor network script: Node: rainfall | code: gst | fields: ts, value, level, depth Sensor: air_quality | fields: type, level, qc, unit Task: Retrieve lon from rainfall whose unit is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004890
train
v1
Sensor network script: Node: evaporation | code: prt | fields: lat, type, value, level Sensor: rainfall | fields: reading, type, depth, lat Task: Get level from evaporation where ts appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004891
train
v3
Sensor network script: Node: sunlight | code: prt | fields: lon, level, ts, qc Sensor: snow_depth | fields: type, value, qc, lat Task: Fetch level from sunlight where reading is greater than the total of depth in snow_depth for matching ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004892
train
v1
Sensor network script: Node: frost | code: gst | fields: lat, reading, depth, level Sensor: sunlight | fields: type, value, qc, lat Task: Fetch value from frost where unit exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004893
train
v3
Sensor network script: Node: drought_index | code: clr | fields: lat, level, depth, qc Sensor: rainfall | fields: lon, type, level, unit Task: Get level from drought_index where depth exceeds the average reading from rainfall for the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004894
train
v1
Sensor network script: Node: frost | code: hub | fields: lat, reading, unit, lon Sensor: dew_point | fields: depth, reading, type, unit Task: Get level from frost where type appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004895
train
v3
Sensor network script: Node: rainfall | code: mst | fields: value, lat, level, ts Sensor: wind_speed | fields: lat, lon, ts, depth Task: Retrieve lat from rainfall with depth above the AVG(depth) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004896
train
v2
Sensor network script: Node: sunlight | code: hub | fields: unit, lon, qc, ts Sensor: evaporation | fields: ts, lon, reading, depth Task: Get lat from sunlight where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004897
train
v1
Sensor network script: Node: turbidity | code: ref | fields: unit, type, lat, depth Sensor: pressure | fields: level, value, depth, lat Task: Get lat from turbidity where unit appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004898
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: qc, reading, type, value Sensor: dew_point | fields: ts, unit, value, level Task: Get lat from cloud_cover where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004899
train