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: stn | fields: qc, reading, depth, ts Sensor: uv_index | fields: lon, lat, depth, qc Task: Get value from evaporation where ts appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016400
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lon, ts, lat, reading Sensor: rainfall | fields: unit, qc, type, value Task: Get value from air_quality where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016401
train
v1
Sensor network script: Node: turbidity | code: thr | fields: ts, depth, value, unit Sensor: cloud_cover | fields: qc, reading, depth, level Task: Fetch level from turbidity where type exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016402
train
v2
Sensor network script: Node: evaporation | code: mst | fields: depth, ts, reading, value Sensor: lightning | fields: level, type, ts, lon Task: Retrieve lon from evaporation that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016403
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: level, type, unit, value Sensor: drought_index | fields: lon, unit, ts, type Task: Fetch value from wind_speed where unit exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016404
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: level, value, depth, lon Sensor: uv_index | fields: lat, ts, type, qc Task: Fetch depth from snow_depth where depth exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016405
train
v1
Sensor network script: Node: uv_index | code: clr | fields: value, reading, ts, qc Sensor: frost | fields: type, lat, depth, ts Task: Retrieve value from uv_index whose qc is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016406
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: reading, unit, level, depth Sensor: visibility | fields: value, reading, ts, level Task: Get level from wind_speed where value exceeds the minimum depth from visibility for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016407
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: depth, ts, reading, level Sensor: dew_point | fields: reading, ts, qc, value Task: Get lat from cloud_cover where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016408
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: reading, unit, type, qc Sensor: evaporation | fields: reading, qc, level, lat Task: Fetch level from soil_moisture where value is greater than the count of of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016409
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: reading, level, unit, type Sensor: snow_depth | fields: type, lon, depth, reading Task: Retrieve lon from soil_moisture that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016410
train
v1
Sensor network script: Node: evaporation | code: clr | fields: level, unit, lon, lat Sensor: snow_depth | fields: value, level, unit, ts Task: Get level from evaporation where ts appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016411
train
v3
Sensor network script: Node: humidity | code: prt | fields: value, level, qc, reading Sensor: frost | fields: unit, value, qc, ts Task: Retrieve lon from humidity with value above the SUM(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016412
train
v1
Sensor network script: Node: air_quality | code: ref | fields: lon, value, level, qc Sensor: drought_index | fields: lon, lat, type, qc Task: Retrieve lon from air_quality whose ts is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016413
train
v3
Sensor network script: Node: temperature | code: clr | fields: type, depth, level, value Sensor: dew_point | fields: level, type, unit, qc Task: Get lat from temperature where value exceeds the total reading from dew_point for the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016414
train
v2
Sensor network script: Node: evaporation | code: stn | fields: level, type, ts, reading Sensor: lightning | fields: lon, lat, unit, reading Task: Fetch lon from evaporation that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016415
train
v3
Sensor network script: Node: air_quality | code: mst | fields: value, qc, unit, type Sensor: pressure | fields: level, reading, type, qc Task: Retrieve lon from air_quality with reading above the MIN(value) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016416
train
v1
Sensor network script: Node: lightning | code: clr | fields: reading, value, lat, unit Sensor: sunlight | fields: qc, depth, lon, ts Task: Get reading from lightning where ts appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016417
train
v1
Sensor network script: Node: humidity | code: clr | fields: unit, reading, type, ts Sensor: sunlight | fields: lat, qc, unit, reading Task: Get depth from humidity where unit appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016418
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, lat, ts, lon Sensor: frost | fields: lon, type, depth, ts Task: Fetch value from soil_moisture where ts exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016419
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: qc, lat, level, type Sensor: visibility | fields: qc, lon, unit, level Task: Fetch level from cloud_cover where unit exists in visibility sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016420
train
v2
Sensor network script: Node: sunlight | code: clr | fields: type, reading, lat, qc Sensor: snow_depth | fields: lon, unit, type, lat Task: Fetch reading from sunlight that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016421
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: type, lat, reading, value Sensor: lightning | fields: qc, unit, reading, depth Task: Retrieve reading from wind_speed with value above the MIN(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016422
train
v1
Sensor network script: Node: temperature | code: prt | fields: reading, lat, qc, type Sensor: humidity | fields: level, reading, ts, unit Task: Fetch reading from temperature where unit exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016423
train
v1
Sensor network script: Node: sunlight | code: hub | fields: value, level, depth, type Sensor: cloud_cover | fields: lon, qc, unit, level Task: Fetch value from sunlight where type exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016424
train
v3
Sensor network script: Node: frost | code: clr | fields: ts, level, reading, lat Sensor: evaporation | fields: depth, level, ts, type Task: Retrieve depth from frost with value above the SUM(value) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016425
train
v2
Sensor network script: Node: evaporation | code: mst | fields: reading, lon, value, lat Sensor: dew_point | fields: value, lat, type, reading Task: Fetch lon from evaporation that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016426
train
v3
Sensor network script: Node: humidity | code: clr | fields: depth, lon, qc, lat Sensor: wind_speed | fields: unit, type, ts, lat Task: Get level from humidity where value exceeds the maximum reading from wind_speed for the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016427
train
v3
Sensor network script: Node: visibility | code: mst | fields: lon, ts, depth, type Sensor: air_quality | fields: type, value, unit, reading Task: Fetch lon from visibility where reading is greater than the total of value in air_quality for matching ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016428
train
v1
Sensor network script: Node: rainfall | code: mst | fields: type, value, lat, level Sensor: humidity | fields: level, lat, lon, reading Task: Retrieve lon from rainfall whose ts is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016429
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, lon, value, type Sensor: drought_index | fields: lat, unit, type, reading Task: Get depth from humidity where depth exceeds the total reading from drought_index for the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016430
train
v1
Sensor network script: Node: evaporation | code: stn | fields: value, ts, type, unit Sensor: wind_speed | fields: unit, reading, type, qc Task: Get reading from evaporation where qc appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016431
train
v3
Sensor network script: Node: evaporation | code: prt | fields: qc, lat, depth, unit Sensor: lightning | fields: depth, lat, unit, ts Task: Fetch value from evaporation where depth is greater than the count of of reading in lightning for matching qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "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_016432
train
v2
Sensor network script: Node: sunlight | code: hub | fields: reading, ts, level, unit Sensor: rainfall | fields: level, unit, reading, ts Task: Retrieve lon from sunlight that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016433
train
v1
Sensor network script: Node: pressure | code: clr | fields: value, ts, level, type Sensor: frost | fields: ts, unit, lat, reading Task: Retrieve value from pressure whose unit is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016434
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: reading, value, type, qc Sensor: soil_moisture | fields: unit, reading, depth, lat Task: Fetch depth from snow_depth where reading is greater than the count of of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016435
train
v2
Sensor network script: Node: rainfall | code: ref | fields: value, type, unit, lat Sensor: snow_depth | fields: qc, value, lon, depth Task: Fetch value from rainfall that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016436
train
v2
Sensor network script: Node: frost | code: stn | fields: ts, lon, qc, depth Sensor: soil_moisture | fields: lat, lon, qc, level Task: Get lat from frost where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016437
train
v2
Sensor network script: Node: drought_index | code: thr | fields: depth, qc, value, ts Sensor: pressure | fields: depth, reading, lat, level Task: Fetch depth from drought_index that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016438
train
v1
Sensor network script: Node: visibility | code: prt | fields: ts, lon, unit, reading Sensor: sunlight | fields: level, ts, value, type Task: Retrieve lat from visibility whose qc is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016439
train
v1
Sensor network script: Node: sunlight | code: hub | fields: ts, lat, qc, level Sensor: air_quality | fields: value, ts, lon, depth Task: Get level from sunlight where depth appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016440
train
v3
Sensor network script: Node: dew_point | code: gst | fields: reading, unit, ts, depth Sensor: evaporation | fields: lat, ts, unit, type Task: Retrieve value from dew_point with reading above the MIN(reading) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016441
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: reading, value, ts, unit Sensor: drought_index | fields: type, ts, depth, level Task: Retrieve lon from wind_speed whose unit is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016442
train
v1
Sensor network script: Node: rainfall | code: prt | fields: level, ts, lat, qc Sensor: soil_moisture | fields: qc, depth, reading, lat Task: Get value from rainfall where ts appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016443
train
v3
Sensor network script: Node: air_quality | code: hub | fields: lon, reading, qc, type Sensor: rainfall | fields: depth, value, unit, reading Task: Get reading from air_quality where depth exceeds the total depth from rainfall for the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016444
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: lat, level, lon, ts Sensor: uv_index | fields: depth, reading, ts, unit Task: Retrieve lon from soil_moisture that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016445
train
v3
Sensor network script: Node: dew_point | code: clr | fields: ts, type, level, reading Sensor: pressure | fields: reading, type, depth, lon Task: Retrieve reading from dew_point with value above the MIN(reading) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016446
train
v2
Sensor network script: Node: sunlight | code: stn | fields: reading, value, depth, lon Sensor: uv_index | fields: lon, unit, lat, level Task: Get level from sunlight where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016447
train
v2
Sensor network script: Node: humidity | code: hub | fields: unit, reading, type, value Sensor: sunlight | fields: level, qc, depth, unit Task: Fetch lat from humidity that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016448
train
v1
Sensor network script: Node: rainfall | code: gst | fields: level, type, value, qc Sensor: visibility | fields: unit, qc, lon, value Task: Get reading from rainfall where ts appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016449
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: reading, level, type, lon Sensor: sunlight | fields: lat, depth, qc, level Task: Get reading from snow_depth where type appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016450
train
v3
Sensor network script: Node: humidity | code: mst | fields: unit, depth, type, reading Sensor: soil_moisture | fields: ts, lon, level, depth Task: Fetch reading from humidity where value is greater than the total of depth in soil_moisture for matching depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016451
train
v2
Sensor network script: Node: sunlight | code: gst | fields: unit, reading, level, qc Sensor: rainfall | fields: lat, depth, type, ts Task: Get value from sunlight where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016452
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lon, type, unit, value Sensor: visibility | fields: depth, type, reading, unit Task: Retrieve level from dew_point whose qc is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016453
train
v3
Sensor network script: Node: uv_index | code: mst | fields: depth, type, level, qc Sensor: humidity | fields: type, lon, reading, lat Task: Fetch level from uv_index where depth is greater than the total of reading in humidity for matching type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016454
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lat, qc, value, reading Sensor: turbidity | fields: unit, qc, type, reading Task: Fetch depth from snow_depth that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016455
train
v2
Sensor network script: Node: drought_index | code: prt | fields: unit, lon, level, value Sensor: temperature | fields: type, qc, lon, depth Task: Fetch reading from drought_index that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016456
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: depth, ts, lat, unit Sensor: drought_index | fields: ts, unit, level, value Task: Retrieve lat from soil_moisture whose depth is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016457
train
v3
Sensor network script: Node: drought_index | code: stn | fields: ts, depth, reading, lon Sensor: visibility | fields: type, value, lat, lon Task: Fetch value from drought_index where reading is greater than the total of reading in visibility for matching qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016458
train
v3
Sensor network script: Node: temperature | code: stn | fields: unit, type, value, level Sensor: humidity | fields: depth, ts, reading, level Task: Get level from temperature where value exceeds the maximum depth from humidity for the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016459
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: unit, depth, ts, qc Sensor: evaporation | fields: reading, lon, depth, unit Task: Get depth from cloud_cover where depth exceeds the maximum value from evaporation for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016460
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, value, type, ts Sensor: turbidity | fields: reading, lat, depth, lon 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="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016461
train
v2
Sensor network script: Node: turbidity | code: stn | fields: level, reading, value, ts Sensor: visibility | fields: reading, value, qc, lon Task: Fetch value from turbidity that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016462
train
v1
Sensor network script: Node: uv_index | code: thr | fields: type, unit, lon, qc Sensor: pressure | fields: type, lat, lon, level Task: Get level from uv_index where qc appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016463
train
v2
Sensor network script: Node: pressure | code: mst | fields: level, lon, qc, ts Sensor: drought_index | fields: lon, level, unit, ts Task: Get reading from pressure where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016464
train
v2
Sensor network script: Node: pressure | code: prt | fields: unit, depth, value, type Sensor: snow_depth | fields: lat, reading, type, unit Task: Get depth from pressure where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016465
train
v1
Sensor network script: Node: temperature | code: mst | fields: level, reading, unit, type Sensor: visibility | fields: value, lat, qc, unit Task: Fetch lat from temperature where ts exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016466
train
v3
Sensor network script: Node: humidity | code: prt | fields: type, qc, value, depth Sensor: cloud_cover | fields: reading, unit, ts, qc Task: Get reading from humidity where depth exceeds the maximum depth from cloud_cover for the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016467
train
v1
Sensor network script: Node: uv_index | code: ref | fields: unit, depth, reading, level Sensor: snow_depth | fields: ts, level, lon, type Task: Get reading from uv_index where ts appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016468
train
v1
Sensor network script: Node: rainfall | code: prt | fields: lon, qc, lat, depth Sensor: visibility | fields: level, type, lon, reading Task: Get lon from rainfall where unit appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016469
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: value, qc, reading, lon Sensor: dew_point | fields: type, ts, depth, level Task: Fetch lat from soil_moisture that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016470
train
v1
Sensor network script: Node: turbidity | code: clr | fields: qc, unit, type, lat Sensor: sunlight | fields: value, qc, ts, unit Task: Fetch reading from turbidity where ts exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016471
train
v2
Sensor network script: Node: turbidity | code: mst | fields: lat, level, qc, unit Sensor: humidity | fields: unit, ts, depth, lat Task: Fetch level from turbidity that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016472
train
v1
Sensor network script: Node: drought_index | code: ref | fields: value, lon, level, lat Sensor: dew_point | fields: qc, depth, unit, level Task: Get depth from drought_index where qc appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016473
train
v3
Sensor network script: Node: rainfall | code: thr | fields: ts, depth, lat, value Sensor: visibility | fields: qc, unit, ts, lat Task: Retrieve lon from rainfall with value above the MAX(depth) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016474
train
v2
Sensor network script: Node: rainfall | code: hub | fields: ts, reading, value, lon Sensor: turbidity | fields: level, qc, lat, reading Task: Fetch value from rainfall that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016475
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: depth, qc, unit, lat Sensor: air_quality | fields: depth, ts, type, lat Task: Get value from soil_moisture where reading exceeds the average value from air_quality for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016476
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: value, ts, reading, depth Sensor: air_quality | fields: lat, ts, level, value Task: Fetch lon from soil_moisture where depth is greater than the average of depth in air_quality for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016477
train
v1
Sensor network script: Node: evaporation | code: ref | fields: qc, value, ts, depth Sensor: lightning | fields: value, type, ts, level Task: Fetch reading from evaporation where ts exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016478
train
v1
Sensor network script: Node: dew_point | code: thr | fields: ts, type, value, reading Sensor: soil_moisture | fields: lon, reading, qc, value Task: Fetch lon from dew_point where ts exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016479
train
v3
Sensor network script: Node: visibility | code: mst | fields: ts, reading, value, level Sensor: frost | fields: unit, reading, lon, depth Task: Fetch reading from visibility where value is greater than the minimum of value in frost for matching unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="unit"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016480
train
v1
Sensor network script: Node: rainfall | code: gst | fields: level, qc, lon, reading Sensor: lightning | fields: lat, unit, level, ts Task: Get depth from rainfall where depth appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016481
train
v1
Sensor network script: Node: pressure | code: clr | fields: ts, lat, reading, value Sensor: evaporation | fields: reading, unit, lon, depth Task: Fetch depth from pressure where depth exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016482
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: type, qc, value, reading Sensor: wind_speed | fields: reading, value, unit, lon Task: Fetch reading from soil_moisture that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016483
train
v1
Sensor network script: Node: evaporation | code: stn | fields: lat, value, unit, lon Sensor: frost | fields: qc, unit, level, lat Task: Retrieve value from evaporation whose ts is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016484
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, lat, type, lon Sensor: soil_moisture | fields: type, qc, ts, lon Task: Retrieve level from dew_point that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016485
train
v2
Sensor network script: Node: uv_index | code: prt | fields: type, lat, ts, level Sensor: pressure | fields: level, reading, lat, depth Task: Get lon from uv_index where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016486
train
v1
Sensor network script: Node: humidity | code: thr | fields: type, unit, depth, reading Sensor: evaporation | fields: value, ts, level, lon Task: Get level from humidity where qc appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016487
train
v3
Sensor network script: Node: visibility | code: ref | fields: depth, value, ts, level Sensor: evaporation | fields: reading, qc, lon, type Task: Fetch depth from visibility where value is greater than the total of reading in evaporation for matching qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016488
train
v1
Sensor network script: Node: dew_point | code: clr | fields: level, ts, value, lat Sensor: soil_moisture | fields: qc, type, value, depth Task: Fetch value from dew_point where qc exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016489
train
v3
Sensor network script: Node: sunlight | code: ref | fields: level, qc, depth, ts Sensor: temperature | fields: level, value, unit, type Task: Get value from sunlight where depth exceeds the average reading from temperature for the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016490
train
v2
Sensor network script: Node: rainfall | code: mst | fields: value, depth, unit, ts Sensor: dew_point | fields: ts, unit, value, qc Task: Retrieve level from rainfall that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016491
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: reading, unit, depth, lat Sensor: temperature | fields: ts, lat, level, depth Task: Get depth from wind_speed where value exceeds the minimum value from temperature for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016492
train
v3
Sensor network script: Node: pressure | code: hub | fields: qc, ts, lat, type Sensor: sunlight | fields: ts, reading, qc, level Task: Get lat from pressure where reading exceeds the count of value from sunlight for the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016493
train
v2
Sensor network script: Node: air_quality | code: gst | fields: unit, level, qc, lat Sensor: dew_point | fields: ts, lat, level, qc Task: Retrieve value from air_quality that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016494
train
v3
Sensor network script: Node: uv_index | code: gst | fields: type, ts, value, reading Sensor: evaporation | fields: qc, unit, lat, reading Task: Get depth from uv_index where depth exceeds the total depth from evaporation for the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016495
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: ts, reading, value, qc Sensor: turbidity | fields: unit, qc, depth, reading Task: Retrieve lon from wind_speed that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016496
train
v1
Sensor network script: Node: evaporation | code: hub | fields: unit, lon, value, depth Sensor: visibility | fields: unit, lon, reading, qc Task: Retrieve level from evaporation whose type is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_016497
train
v3
Sensor network script: Node: uv_index | code: ref | fields: type, value, qc, lat Sensor: frost | fields: ts, lat, lon, qc Task: Fetch reading from uv_index where value is greater than the average of value in frost for matching ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016498
train
v1
Sensor network script: Node: uv_index | code: mst | fields: ts, qc, level, depth Sensor: drought_index | fields: lat, ts, unit, value Task: Fetch level from uv_index where ts exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_016499
train