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: gst | fields: depth, qc, lat, ts Sensor: snow_depth | fields: unit, level, value, type Task: Fetch reading from dew_point where type exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008300
train
v2
Sensor network script: Node: humidity | code: gst | fields: ts, type, lat, lon Sensor: pressure | fields: unit, level, type, lat Task: Retrieve reading from humidity that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008301
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: qc, lat, ts, depth Sensor: cloud_cover | fields: level, lat, unit, ts Task: Get reading from soil_moisture where value exceeds the count of reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008302
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: type, lat, lon, qc Sensor: frost | fields: value, type, level, ts Task: Fetch lat from wind_speed where depth is greater than the count of of value in frost for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008303
train
v2
Sensor network script: Node: evaporation | code: mst | fields: lon, reading, ts, level Sensor: temperature | fields: reading, value, unit, level Task: Fetch depth from evaporation that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008304
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: ts, reading, unit, lon Sensor: turbidity | fields: type, ts, value, level Task: Get lat from snow_depth where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008305
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: ts, value, type, lat Sensor: air_quality | fields: qc, lat, reading, level Task: Fetch reading from cloud_cover where reading is greater than the minimum of reading in air_quality for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008306
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lon, level, reading, ts Sensor: turbidity | fields: lat, unit, ts, type Task: Retrieve value from dew_point that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008307
train
v3
Sensor network script: Node: turbidity | code: ref | fields: ts, unit, value, level Sensor: uv_index | fields: qc, value, lon, type Task: Retrieve depth from turbidity with reading above the COUNT(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008308
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: depth, level, unit, reading Sensor: temperature | fields: lon, reading, depth, type Task: Retrieve depth from snow_depth whose ts is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008309
train
v3
Sensor network script: Node: evaporation | code: thr | fields: lat, depth, type, value Sensor: rainfall | fields: qc, reading, depth, type Task: Get lon from evaporation where depth exceeds the total reading from rainfall for the same qc. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008310
train
v3
Sensor network script: Node: pressure | code: mst | fields: unit, type, lon, qc Sensor: frost | fields: lat, reading, qc, unit Task: Retrieve lat from pressure with depth above the MAX(value) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008311
train
v2
Sensor network script: Node: turbidity | code: thr | fields: reading, lat, depth, type Sensor: air_quality | fields: unit, lon, lat, level Task: Get depth from turbidity where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008312
train
v1
Sensor network script: Node: frost | code: hub | fields: unit, lat, type, qc Sensor: lightning | fields: lon, lat, ts, type Task: Get reading from frost where type appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008313
train
v2
Sensor network script: Node: dew_point | code: stn | fields: qc, level, lat, unit Sensor: sunlight | fields: reading, type, value, lon Task: Fetch lat from dew_point that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008314
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: lon, lat, qc, ts Sensor: pressure | fields: value, depth, reading, level Task: Get depth from cloud_cover where depth exceeds the minimum value from pressure for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008315
train
v2
Sensor network script: Node: frost | code: prt | fields: value, ts, lon, reading Sensor: uv_index | fields: ts, lat, qc, lon Task: Get lon from frost where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008316
train
v1
Sensor network script: Node: lightning | code: gst | fields: reading, value, lat, type Sensor: frost | fields: depth, ts, type, level Task: Retrieve lon from lightning whose unit is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008317
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, ts, lat, type Sensor: uv_index | fields: value, depth, ts, reading Task: Retrieve lon from snow_depth that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008318
train
v1
Sensor network script: Node: rainfall | code: hub | fields: level, unit, reading, lat Sensor: pressure | fields: reading, value, qc, lon Task: Fetch reading from rainfall where unit exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008319
train
v3
Sensor network script: Node: visibility | code: stn | fields: reading, lat, level, qc Sensor: pressure | fields: depth, type, value, reading Task: Retrieve level from visibility with reading above the SUM(value) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008320
train
v1
Sensor network script: Node: temperature | code: mst | fields: qc, lat, type, depth Sensor: soil_moisture | fields: lon, reading, value, ts Task: Fetch depth from temperature where type exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008321
train
v1
Sensor network script: Node: frost | code: mst | fields: value, unit, depth, lon Sensor: turbidity | fields: depth, level, ts, reading Task: Get level from frost where qc appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008322
train
v2
Sensor network script: Node: air_quality | code: clr | fields: depth, value, type, lon Sensor: lightning | fields: type, ts, reading, level Task: Get lon from air_quality where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008323
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: qc, lat, reading, lon Sensor: frost | fields: lat, unit, qc, lon Task: Fetch depth from soil_moisture that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008324
train
v3
Sensor network script: Node: dew_point | code: mst | fields: type, reading, level, lat Sensor: humidity | fields: qc, lat, level, value Task: Get reading from dew_point where value exceeds the average value from humidity for the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008325
train
v1
Sensor network script: Node: air_quality | code: ref | fields: value, reading, lon, level Sensor: frost | fields: lat, type, ts, unit Task: Retrieve value from air_quality whose type is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008326
train
v3
Sensor network script: Node: drought_index | code: prt | fields: reading, ts, level, lon Sensor: frost | fields: unit, value, ts, type Task: Retrieve lon from drought_index with value above the MAX(depth) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008327
train
v2
Sensor network script: Node: visibility | code: thr | fields: depth, ts, lat, reading Sensor: wind_speed | fields: level, lat, value, depth Task: Get lat from visibility where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008328
train
v3
Sensor network script: Node: lightning | code: stn | fields: type, unit, level, lat Sensor: sunlight | fields: lon, lat, level, value Task: Get level from lightning where reading exceeds the maximum value from sunlight for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008329
train
v2
Sensor network script: Node: drought_index | code: gst | fields: ts, level, reading, lon Sensor: evaporation | fields: ts, type, qc, unit Task: Get reading from drought_index where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008330
train
v3
Sensor network script: Node: pressure | code: prt | fields: type, lat, level, reading Sensor: drought_index | fields: reading, unit, lat, value Task: Fetch value from pressure where value is greater than the minimum of depth in drought_index for matching depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008331
train
v1
Sensor network script: Node: lightning | code: prt | fields: depth, ts, level, reading Sensor: turbidity | fields: lat, lon, type, unit Task: Fetch value from lightning where ts exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008332
train
v3
Sensor network script: Node: pressure | code: stn | fields: depth, reading, value, type Sensor: snow_depth | fields: value, unit, qc, level Task: Fetch depth from pressure where reading is greater than the count of of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008333
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, lon, reading, level Sensor: soil_moisture | fields: lon, value, type, level Task: Get level from snow_depth where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008334
train
v2
Sensor network script: Node: rainfall | code: thr | fields: lat, reading, type, depth Sensor: frost | fields: level, reading, qc, lon Task: Get value from rainfall where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008335
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: depth, lat, ts, reading Sensor: pressure | fields: level, qc, lat, depth Task: Fetch depth from soil_moisture where qc exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008336
train
v2
Sensor network script: Node: sunlight | code: clr | fields: reading, lat, unit, lon Sensor: soil_moisture | fields: qc, type, level, unit Task: Fetch depth from sunlight that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008337
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: reading, depth, lon, lat Sensor: humidity | fields: qc, depth, unit, lon Task: Retrieve level from cloud_cover whose depth is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008338
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: ts, value, qc, depth Sensor: pressure | fields: depth, qc, unit, value Task: Retrieve lat from cloud_cover with value above the AVG(value) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008339
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: qc, ts, type, unit Sensor: rainfall | fields: lat, lon, qc, ts Task: Get depth from cloud_cover where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008340
train
v1
Sensor network script: Node: lightning | code: clr | fields: type, lon, value, reading Sensor: turbidity | fields: qc, reading, lon, value Task: Retrieve lon from lightning whose unit is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008341
train
v1
Sensor network script: Node: frost | code: stn | fields: value, depth, ts, lon Sensor: soil_moisture | fields: ts, reading, depth, type Task: Get depth from frost where ts appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008342
train
v3
Sensor network script: Node: pressure | code: gst | fields: lat, depth, level, unit Sensor: humidity | fields: reading, lon, value, lat Task: Retrieve value from pressure with reading above the MIN(value) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008343
train
v3
Sensor network script: Node: frost | code: mst | fields: lat, reading, type, qc Sensor: rainfall | fields: lat, value, qc, reading Task: Retrieve value from frost with depth above the COUNT(value) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008344
train
v3
Sensor network script: Node: rainfall | code: clr | fields: qc, reading, value, depth Sensor: air_quality | fields: unit, type, qc, lon Task: Get lat from rainfall where depth exceeds the minimum reading from air_quality for the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008345
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: lat, reading, level, type Sensor: lightning | fields: level, qc, lat, unit Task: Retrieve level from wind_speed whose ts is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008346
train
v2
Sensor network script: Node: visibility | code: hub | fields: type, ts, level, value Sensor: soil_moisture | fields: lat, reading, lon, depth Task: Get value from visibility where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008347
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: unit, lon, qc, reading Sensor: visibility | fields: unit, reading, lat, type Task: Retrieve value from cloud_cover whose ts is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008348
train
v1
Sensor network script: Node: humidity | code: mst | fields: depth, ts, lon, qc Sensor: dew_point | fields: reading, qc, type, ts Task: Get lat from humidity where ts appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008349
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: depth, value, lat, level Sensor: evaporation | fields: lon, qc, level, depth Task: Get reading from wind_speed where depth appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008350
train
v1
Sensor network script: Node: temperature | code: prt | fields: level, depth, type, qc Sensor: dew_point | fields: depth, qc, unit, lat Task: Retrieve value from temperature whose qc is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008351
train
v3
Sensor network script: Node: humidity | code: mst | fields: value, level, unit, lat Sensor: sunlight | fields: lon, qc, ts, reading Task: Retrieve reading from humidity with value above the SUM(reading) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008352
train
v3
Sensor network script: Node: sunlight | code: stn | fields: qc, lat, unit, reading Sensor: air_quality | fields: value, level, qc, unit Task: Retrieve reading from sunlight with depth above the MIN(depth) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008353
train
v2
Sensor network script: Node: humidity | code: prt | fields: qc, reading, value, depth Sensor: uv_index | fields: lon, lat, reading, unit Task: Get lat from humidity where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008354
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: value, depth, unit, ts Sensor: drought_index | fields: ts, type, qc, value Task: Get level from wind_speed where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008355
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, ts, type, lon Sensor: wind_speed | fields: qc, ts, depth, unit Task: Retrieve value from snow_depth whose qc is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008356
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: ts, value, unit, depth Sensor: wind_speed | fields: level, lat, qc, reading Task: Fetch value from soil_moisture that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008357
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: qc, level, lon, ts Sensor: humidity | fields: qc, type, unit, depth Task: Retrieve lat from snow_depth that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008358
train
v3
Sensor network script: Node: air_quality | code: hub | fields: type, value, reading, ts Sensor: evaporation | fields: depth, value, level, unit Task: Get value from air_quality where reading exceeds the count of value from evaporation for the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008359
train
v2
Sensor network script: Node: turbidity | code: mst | fields: reading, qc, unit, depth Sensor: evaporation | fields: unit, qc, reading, ts Task: Retrieve value from turbidity that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008360
train
v3
Sensor network script: Node: evaporation | code: clr | fields: qc, lat, reading, level Sensor: lightning | fields: qc, value, lon, unit Task: Retrieve depth from evaporation with reading above the MIN(depth) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008361
train
v1
Sensor network script: Node: humidity | code: mst | fields: level, ts, qc, lat Sensor: soil_moisture | fields: ts, value, unit, level Task: Retrieve value from humidity whose depth is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008362
train
v2
Sensor network script: Node: lightning | code: gst | fields: reading, qc, ts, unit Sensor: dew_point | fields: lat, level, unit, lon Task: Get level from lightning where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008363
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: value, reading, level, lon Sensor: dew_point | fields: reading, type, level, ts Task: Fetch depth from cloud_cover where ts exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008364
train
v2
Sensor network script: Node: air_quality | code: stn | fields: qc, value, depth, ts Sensor: uv_index | fields: lon, depth, type, level Task: Retrieve value from air_quality that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008365
train
v2
Sensor network script: Node: rainfall | code: thr | fields: lon, type, level, unit Sensor: humidity | fields: qc, lat, depth, reading Task: Get depth from rainfall where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008366
train
v1
Sensor network script: Node: air_quality | code: clr | fields: lat, ts, unit, depth Sensor: temperature | fields: type, lon, lat, qc Task: Get depth from air_quality where depth appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008367
train
v3
Sensor network script: Node: rainfall | code: stn | fields: ts, unit, lon, value Sensor: turbidity | fields: type, ts, qc, depth Task: Fetch depth from rainfall where reading is greater than the maximum of depth in turbidity for matching qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008368
train
v2
Sensor network script: Node: drought_index | code: prt | fields: lat, unit, value, ts Sensor: wind_speed | fields: lon, value, type, unit Task: Get lat from drought_index where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008369
train
v3
Sensor network script: Node: frost | code: stn | fields: depth, lat, unit, lon Sensor: snow_depth | fields: unit, lat, type, reading Task: Fetch value from frost where value is greater than the total of reading in snow_depth for matching ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008370
train
v2
Sensor network script: Node: turbidity | code: thr | fields: unit, ts, depth, level Sensor: wind_speed | fields: unit, qc, lon, ts Task: Retrieve depth from turbidity that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008371
train
v1
Sensor network script: Node: dew_point | code: thr | fields: reading, type, level, qc Sensor: evaporation | fields: ts, value, type, lat Task: Get level from dew_point where type appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008372
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lon, unit, lat, value Sensor: snow_depth | fields: lon, value, depth, level Task: Fetch depth from drought_index where ts exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008373
train
v3
Sensor network script: Node: frost | code: clr | fields: unit, reading, lat, ts Sensor: cloud_cover | fields: ts, qc, value, lat Task: Fetch level from frost where depth is greater than the average of depth in cloud_cover for matching ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008374
train
v3
Sensor network script: Node: pressure | code: ref | fields: type, qc, ts, lat Sensor: sunlight | fields: type, value, lon, level Task: Get depth from pressure where value exceeds the maximum depth from sunlight for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008375
train
v1
Sensor network script: Node: lightning | code: prt | fields: ts, qc, unit, value Sensor: cloud_cover | fields: ts, reading, value, qc Task: Retrieve value from lightning whose ts is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008376
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: ts, lon, unit, lat Sensor: rainfall | fields: unit, reading, depth, ts Task: Fetch depth from snow_depth where unit exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008377
train
v1
Sensor network script: Node: pressure | code: prt | fields: depth, reading, ts, lat Sensor: frost | fields: reading, unit, type, lat Task: Retrieve lat from pressure whose depth is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008378
train
v2
Sensor network script: Node: turbidity | code: hub | fields: value, reading, depth, qc Sensor: lightning | fields: level, qc, depth, ts Task: Fetch value from turbidity that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008379
train
v2
Sensor network script: Node: air_quality | code: stn | fields: type, depth, qc, level Sensor: snow_depth | fields: depth, type, level, lat Task: Fetch reading from air_quality that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008380
train
v1
Sensor network script: Node: visibility | code: prt | fields: depth, type, value, qc Sensor: soil_moisture | fields: ts, level, qc, unit Task: Fetch depth from visibility where unit exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008381
train
v2
Sensor network script: Node: frost | code: stn | fields: lon, ts, reading, qc Sensor: sunlight | fields: type, reading, value, ts Task: Get depth from frost where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008382
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: depth, ts, qc, lon Sensor: snow_depth | fields: reading, lon, ts, unit Task: Get reading from wind_speed where depth exceeds the count of reading from snow_depth for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008383
train
v2
Sensor network script: Node: visibility | code: mst | fields: ts, depth, reading, lon Sensor: wind_speed | fields: depth, lat, level, qc Task: Retrieve lon from visibility that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008384
train
v2
Sensor network script: Node: frost | code: prt | fields: type, lon, depth, unit Sensor: wind_speed | fields: lat, lon, ts, reading Task: Get lat from frost where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008385
train
v2
Sensor network script: Node: lightning | code: stn | fields: depth, ts, qc, reading Sensor: rainfall | fields: level, lon, qc, ts Task: Get reading from lightning where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008386
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: qc, level, unit, lat Sensor: drought_index | fields: lat, qc, reading, lon Task: Fetch value from wind_speed where depth is greater than the average of value in drought_index for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008387
train
v2
Sensor network script: Node: visibility | code: gst | fields: level, type, lat, value Sensor: turbidity | fields: depth, level, lon, qc Task: Fetch reading from visibility that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008388
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, level, lon, lat Sensor: wind_speed | fields: level, lat, value, lon Task: Get level from pressure where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008389
train
v1
Sensor network script: Node: pressure | code: thr | fields: qc, type, value, ts Sensor: dew_point | fields: unit, level, value, lon Task: Fetch reading from pressure where ts exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008390
train
v3
Sensor network script: Node: pressure | code: prt | fields: level, reading, ts, unit Sensor: soil_moisture | fields: qc, level, reading, depth Task: Get lon from pressure where value exceeds the count of value from soil_moisture for the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008391
train
v2
Sensor network script: Node: visibility | code: clr | fields: unit, lon, qc, reading Sensor: humidity | fields: depth, type, ts, lat Task: Get value from visibility where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008392
train
v3
Sensor network script: Node: drought_index | code: clr | fields: value, depth, reading, lat Sensor: wind_speed | fields: ts, reading, lon, lat Task: Retrieve level from drought_index with reading above the MAX(value) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008393
train
v1
Sensor network script: Node: sunlight | code: prt | fields: depth, type, value, level Sensor: dew_point | fields: value, ts, qc, level Task: Get value from sunlight where qc appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008394
train
v2
Sensor network script: Node: turbidity | code: gst | fields: type, unit, reading, value Sensor: cloud_cover | fields: qc, type, level, unit Task: Retrieve lat from turbidity that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008395
train
v1
Sensor network script: Node: visibility | code: ref | fields: value, unit, ts, type Sensor: evaporation | fields: depth, qc, level, type Task: Retrieve depth from visibility whose unit is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008396
train
v2
Sensor network script: Node: frost | code: stn | fields: value, lon, level, reading Sensor: lightning | fields: level, unit, reading, lat Task: Fetch level from frost that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008397
train
v3
Sensor network script: Node: rainfall | code: prt | fields: lon, level, depth, reading Sensor: humidity | fields: depth, ts, unit, value Task: Fetch lat from rainfall where reading is greater than the count of of depth in humidity for matching unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008398
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: unit, lat, value, depth Sensor: lightning | fields: unit, lat, depth, value Task: Get depth from snow_depth where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008399
train