variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: drought_index | code: hub | fields: qc, ts, depth, unit Sensor: turbidity | fields: lat, type, qc, lon Task: Fetch level from drought_index that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068400
train
v2
Sensor network script: Node: rainfall | code: stn | fields: level, unit, qc, ts Sensor: air_quality | fields: lat, ts, lon, unit Task: Get depth from rainfall where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068401
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, value, type, qc Sensor: soil_moisture | fields: type, lon, depth, level Task: Retrieve value from visibility that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068402
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: value, depth, level, unit Sensor: wind_speed | fields: ts, reading, type, lon Task: Fetch lon from snow_depth where value is greater than the average of value in wind_speed for matching type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068403
train
v2
Sensor network script: Node: lightning | code: thr | fields: depth, type, qc, reading Sensor: uv_index | fields: depth, unit, lon, ts Task: Retrieve level from lightning that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068404
train
v3
Sensor network script: Node: frost | code: mst | fields: value, type, qc, depth Sensor: turbidity | fields: unit, lat, ts, value Task: Retrieve lon from frost with depth above the AVG(value) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068405
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: depth, qc, unit, type Sensor: pressure | fields: depth, level, unit, qc Task: Fetch value from cloud_cover where value is greater than the total of value in pressure for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068406
train
v2
Sensor network script: Node: evaporation | code: gst | fields: unit, level, lon, value Sensor: dew_point | fields: unit, qc, depth, reading Task: Retrieve lat from evaporation that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068407
train
v2
Sensor network script: Node: rainfall | code: prt | fields: qc, ts, type, level Sensor: soil_moisture | fields: type, unit, reading, ts Task: Fetch level from rainfall that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068408
train
v1
Sensor network script: Node: lightning | code: clr | fields: value, qc, unit, ts Sensor: humidity | fields: ts, value, level, unit Task: Get lon from lightning where unit appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068409
train
v2
Sensor network script: Node: evaporation | code: stn | fields: depth, qc, unit, type Sensor: drought_index | fields: value, lat, unit, ts Task: Fetch level from evaporation that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068410
train
v1
Sensor network script: Node: rainfall | code: mst | fields: qc, value, unit, lat Sensor: frost | fields: reading, lon, type, unit Task: Fetch depth from rainfall where type exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068411
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lon, value, reading, level Sensor: lightning | fields: lon, qc, lat, value Task: Get lon from soil_moisture where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068412
train
v1
Sensor network script: Node: turbidity | code: prt | fields: unit, reading, qc, lon Sensor: pressure | fields: lon, value, lat, unit Task: Fetch reading from turbidity where ts exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068413
train
v1
Sensor network script: Node: drought_index | code: gst | fields: reading, lat, depth, value Sensor: rainfall | fields: unit, level, type, reading Task: Fetch lon from drought_index where type exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068414
train
v1
Sensor network script: Node: uv_index | code: hub | fields: ts, qc, lat, level Sensor: drought_index | fields: depth, lon, qc, value Task: Get level from uv_index where ts appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), 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": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068415
train
v1
Sensor network script: Node: uv_index | code: mst | fields: depth, unit, lat, reading Sensor: sunlight | fields: qc, value, reading, depth Task: Get depth from uv_index where type appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068416
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: reading, unit, qc, ts Sensor: air_quality | fields: lon, ts, unit, value Task: Get lon from cloud_cover where unit appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068417
train
v1
Sensor network script: Node: air_quality | code: mst | fields: qc, lon, ts, type Sensor: turbidity | fields: lon, unit, level, lat Task: Fetch lon from air_quality where depth exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068418
train
v2
Sensor network script: Node: visibility | code: prt | fields: depth, type, unit, level Sensor: wind_speed | fields: unit, lon, depth, reading Task: Retrieve value from visibility that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068419
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: value, lat, depth, ts Sensor: air_quality | fields: depth, qc, ts, lat Task: Get lat from snow_depth where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068420
train
v2
Sensor network script: Node: uv_index | code: ref | fields: lon, ts, level, type Sensor: rainfall | fields: depth, level, value, ts Task: Retrieve lat from uv_index that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068421
train
v1
Sensor network script: Node: evaporation | code: clr | fields: depth, qc, value, level Sensor: drought_index | fields: reading, level, unit, value Task: Get lon from evaporation where type appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068422
train
v2
Sensor network script: Node: humidity | code: mst | fields: value, qc, reading, unit Sensor: soil_moisture | fields: lon, unit, value, level Task: Fetch lat from humidity that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068423
train
v2
Sensor network script: Node: temperature | code: thr | fields: ts, depth, lat, value Sensor: wind_speed | fields: reading, qc, ts, lon Task: Retrieve reading from temperature that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068424
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: qc, lat, reading, depth Sensor: evaporation | fields: unit, type, level, reading Task: Retrieve depth from soil_moisture whose type is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068425
train
v1
Sensor network script: Node: drought_index | code: stn | fields: level, unit, type, reading Sensor: turbidity | fields: lat, lon, level, ts Task: Retrieve lat from drought_index whose type is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068426
train
v1
Sensor network script: Node: evaporation | code: mst | fields: type, level, reading, depth Sensor: wind_speed | fields: unit, type, qc, lon Task: Fetch level from evaporation where qc exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068427
train
v3
Sensor network script: Node: turbidity | code: gst | fields: qc, type, depth, lat Sensor: lightning | fields: type, lon, value, ts Task: Retrieve level from turbidity with reading above the SUM(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068428
train
v2
Sensor network script: Node: frost | code: mst | fields: reading, value, level, lat Sensor: uv_index | fields: level, qc, lon, ts Task: Get lat from frost where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068429
train
v1
Sensor network script: Node: humidity | code: thr | fields: reading, lat, level, unit Sensor: soil_moisture | fields: value, type, unit, ts Task: Get lon from humidity where qc appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068430
train
v3
Sensor network script: Node: evaporation | code: prt | fields: value, reading, ts, qc Sensor: uv_index | fields: qc, lat, reading, depth Task: Fetch value from evaporation where reading is greater than the total of value in uv_index for matching type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068431
train
v2
Sensor network script: Node: humidity | code: stn | fields: depth, lon, reading, type Sensor: rainfall | fields: level, type, reading, lon Task: Fetch lat from humidity that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068432
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: unit, reading, depth, lat Sensor: snow_depth | fields: depth, qc, unit, lat Task: Retrieve lat from cloud_cover that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068433
train
v1
Sensor network script: Node: lightning | code: prt | fields: depth, qc, value, lon Sensor: sunlight | fields: value, reading, depth, lon Task: Retrieve lon from lightning whose type is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068434
train
v1
Sensor network script: Node: drought_index | code: hub | fields: value, lon, qc, depth Sensor: evaporation | fields: type, value, lat, depth Task: Get depth from drought_index where depth appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068435
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: value, reading, lon, lat Sensor: sunlight | fields: level, ts, lat, type Task: Fetch lat from wind_speed that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068436
train
v2
Sensor network script: Node: temperature | code: prt | fields: unit, reading, type, qc Sensor: soil_moisture | fields: unit, depth, lon, lat Task: Fetch depth from temperature that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068437
train
v3
Sensor network script: Node: temperature | code: ref | fields: value, ts, level, reading Sensor: cloud_cover | fields: level, ts, reading, value Task: Get reading from temperature where reading exceeds the minimum depth from cloud_cover for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068438
train
v1
Sensor network script: Node: turbidity | code: mst | fields: reading, level, qc, value Sensor: sunlight | fields: value, reading, lat, qc Task: Retrieve reading from turbidity whose type is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068439
train
v1
Sensor network script: Node: visibility | code: thr | fields: qc, reading, value, ts Sensor: drought_index | fields: unit, value, lat, type Task: Fetch value from visibility where ts exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068440
train
v2
Sensor network script: Node: rainfall | code: thr | fields: lat, depth, reading, unit Sensor: turbidity | fields: reading, value, lon, depth Task: Retrieve reading from rainfall that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068441
train
v3
Sensor network script: Node: evaporation | code: prt | fields: unit, level, reading, depth Sensor: dew_point | fields: level, type, qc, reading Task: Get value from evaporation where depth exceeds the total value from dew_point for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068442
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: qc, lon, reading, lat Sensor: frost | fields: value, lon, unit, reading Task: Retrieve reading from soil_moisture that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068443
train
v3
Sensor network script: Node: lightning | code: prt | fields: value, lat, type, lon Sensor: uv_index | fields: qc, lat, unit, ts Task: Fetch level from lightning where depth is greater than the maximum of depth in uv_index for matching ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068444
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: level, lon, lat, unit Sensor: drought_index | fields: qc, unit, level, ts Task: Fetch reading from cloud_cover where depth exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068445
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: level, lat, qc, value Sensor: temperature | fields: type, unit, lat, depth Task: Fetch reading from wind_speed that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068446
train
v3
Sensor network script: Node: turbidity | code: hub | fields: level, lon, ts, reading Sensor: evaporation | fields: type, level, unit, qc Task: Fetch level from turbidity where depth is greater than the average of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068447
train
v1
Sensor network script: Node: air_quality | code: gst | fields: reading, type, lon, value Sensor: evaporation | fields: ts, lat, qc, lon Task: Get reading from air_quality where depth appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068448
train
v3
Sensor network script: Node: frost | code: gst | fields: reading, lon, depth, value Sensor: cloud_cover | fields: type, value, lon, depth Task: Get reading from frost where value exceeds the count of reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068449
train
v3
Sensor network script: Node: pressure | code: hub | fields: lat, ts, level, reading Sensor: evaporation | fields: reading, qc, lat, lon Task: Get depth from pressure where depth exceeds the minimum value from evaporation for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068450
train
v3
Sensor network script: Node: turbidity | code: stn | fields: level, qc, type, ts Sensor: lightning | fields: qc, ts, unit, value Task: Fetch value from turbidity where value is greater than the count of of reading in lightning for matching qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068451
train
v2
Sensor network script: Node: air_quality | code: prt | fields: lon, ts, level, reading Sensor: frost | fields: value, lat, type, ts Task: Retrieve level from air_quality that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068452
train
v3
Sensor network script: Node: temperature | code: hub | fields: level, ts, qc, value Sensor: wind_speed | fields: lon, level, ts, depth Task: Get level from temperature where depth exceeds the average reading from wind_speed for the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068453
train
v3
Sensor network script: Node: visibility | code: mst | fields: reading, lon, lat, ts Sensor: soil_moisture | fields: unit, lon, value, qc Task: Get depth from visibility where value exceeds the count of depth from soil_moisture for the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068454
train
v3
Sensor network script: Node: sunlight | code: prt | fields: qc, depth, reading, value Sensor: temperature | fields: lon, type, qc, lat Task: Fetch lon from sunlight where value is greater than the count of of depth in temperature for matching unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068455
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, type, ts, qc Sensor: snow_depth | fields: reading, qc, level, type Task: Retrieve lat from visibility whose ts is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068456
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: ts, depth, type, value Sensor: evaporation | fields: lat, depth, unit, type Task: Retrieve lat from wind_speed that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068457
train
v2
Sensor network script: Node: temperature | code: stn | fields: reading, unit, lat, ts Sensor: lightning | fields: type, qc, reading, depth Task: Get lat from temperature where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068458
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lat, reading, level, depth Sensor: pressure | fields: value, ts, level, lon Task: Get level from evaporation where qc appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068459
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: ts, value, qc, unit Sensor: soil_moisture | fields: unit, ts, depth, lat Task: Get value from snow_depth where reading exceeds the total reading from soil_moisture for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068460
train
v3
Sensor network script: Node: air_quality | code: gst | fields: qc, lon, type, level Sensor: sunlight | fields: value, reading, lat, unit Task: Fetch lat from air_quality where depth is greater than the minimum of reading in sunlight for matching unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068461
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, unit, reading, level Sensor: lightning | fields: type, reading, unit, qc Task: Get lat from rainfall where depth exceeds the maximum depth from lightning for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068462
train
v3
Sensor network script: Node: temperature | code: hub | fields: type, qc, unit, lon Sensor: cloud_cover | fields: value, lon, qc, lat Task: Fetch depth from temperature where depth is greater than the maximum of reading in cloud_cover for matching type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068463
train
v3
Sensor network script: Node: rainfall | code: hub | fields: lon, unit, depth, qc Sensor: pressure | fields: lat, lon, depth, reading Task: Get lat from rainfall where depth exceeds the minimum value from pressure for the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068464
train
v1
Sensor network script: Node: temperature | code: stn | fields: ts, value, lat, lon Sensor: soil_moisture | fields: type, depth, reading, lat Task: Retrieve level from temperature whose qc is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068465
train
v3
Sensor network script: Node: temperature | code: hub | fields: unit, reading, value, type Sensor: turbidity | fields: ts, value, unit, type Task: Get reading from temperature where depth exceeds the maximum reading from turbidity for the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068466
train
v1
Sensor network script: Node: humidity | code: ref | fields: qc, reading, value, unit Sensor: dew_point | fields: reading, depth, value, lon Task: Retrieve level from humidity whose ts is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068467
train
v3
Sensor network script: Node: visibility | code: clr | fields: ts, unit, level, reading Sensor: rainfall | fields: unit, type, depth, reading Task: Get level from visibility where reading exceeds the maximum reading from rainfall for the same ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068468
train
v3
Sensor network script: Node: drought_index | code: stn | fields: reading, lat, unit, depth Sensor: turbidity | fields: value, reading, lat, level Task: Fetch level from drought_index where depth is greater than the count of of reading in turbidity for matching type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068469
train
v1
Sensor network script: Node: rainfall | code: thr | fields: value, unit, type, reading Sensor: air_quality | fields: reading, type, unit, lat Task: Fetch reading from rainfall where type exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068470
train
v1
Sensor network script: Node: frost | code: hub | fields: depth, lat, type, qc Sensor: rainfall | fields: qc, unit, lon, depth Task: Fetch value from frost where type exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068471
train
v2
Sensor network script: Node: lightning | code: clr | fields: lat, qc, value, reading Sensor: evaporation | fields: ts, lat, value, unit Task: Fetch lon from lightning that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068472
train
v3
Sensor network script: Node: drought_index | code: thr | fields: qc, level, type, unit Sensor: humidity | fields: ts, type, qc, depth Task: Get value from drought_index where depth exceeds the count of reading from humidity for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068473
train
v3
Sensor network script: Node: dew_point | code: gst | fields: depth, unit, reading, lon Sensor: lightning | fields: depth, lat, type, qc Task: Get lon from dew_point where value exceeds the maximum value from lightning for the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068474
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: lat, lon, depth, reading Sensor: evaporation | fields: lon, value, ts, lat Task: Fetch lat from wind_speed where depth is greater than the maximum of value in evaporation for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068475
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lat, type, depth, lon Sensor: uv_index | fields: lat, qc, value, type Task: Retrieve lon from cloud_cover whose unit is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068476
train
v3
Sensor network script: Node: pressure | code: gst | fields: type, reading, ts, value Sensor: snow_depth | fields: level, type, depth, ts Task: Retrieve lat from pressure with depth above the AVG(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068477
train
v3
Sensor network script: Node: pressure | code: prt | fields: reading, depth, lon, level Sensor: lightning | fields: level, lat, type, reading Task: Get depth from pressure where value exceeds the total depth from lightning for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068478
train
v1
Sensor network script: Node: visibility | code: clr | fields: unit, lat, type, ts Sensor: cloud_cover | fields: type, qc, reading, lon Task: Get lon from visibility where ts appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068479
train
v2
Sensor network script: Node: temperature | code: prt | fields: qc, reading, value, lon Sensor: cloud_cover | fields: type, level, value, depth Task: Fetch lon from temperature that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068480
train
v1
Sensor network script: Node: humidity | code: prt | fields: value, level, unit, lon Sensor: frost | fields: type, lat, lon, qc Task: Fetch level from humidity where ts exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068481
train
v3
Sensor network script: Node: uv_index | code: stn | fields: type, qc, reading, value Sensor: snow_depth | fields: reading, lat, unit, level Task: Get reading from uv_index where reading exceeds the total value from snow_depth for the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "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_068482
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: reading, depth, value, lat Sensor: humidity | fields: qc, reading, lat, ts Task: Get lat from snow_depth where depth exceeds the average value from humidity for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068483
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lat, unit, value, reading Sensor: sunlight | fields: type, depth, reading, ts Task: Get lon from snow_depth where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068484
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, level, unit, ts Sensor: lightning | fields: type, lon, unit, level Task: Retrieve reading from rainfall with depth above the MIN(value) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068485
train
v2
Sensor network script: Node: pressure | code: hub | fields: value, qc, unit, ts Sensor: evaporation | fields: qc, level, type, value Task: Fetch value from pressure that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068486
train
v3
Sensor network script: Node: air_quality | code: ref | fields: level, unit, value, ts Sensor: evaporation | fields: value, type, reading, qc Task: Retrieve value from air_quality with depth above the COUNT(value) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068487
train
v1
Sensor network script: Node: pressure | code: clr | fields: level, unit, qc, type Sensor: lightning | fields: qc, level, unit, value Task: Get lon from pressure where type appears in lightning readings with matching type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068488
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: depth, lon, reading, level Sensor: frost | fields: unit, ts, lon, level Task: Retrieve level from soil_moisture that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068489
train
v2
Sensor network script: Node: sunlight | code: gst | fields: qc, ts, level, type Sensor: frost | fields: lon, type, value, reading Task: Get reading from sunlight where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068490
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: unit, lon, reading, type Sensor: dew_point | fields: qc, depth, lon, lat Task: Fetch reading from soil_moisture that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068491
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lat, reading, value, level Sensor: air_quality | fields: value, reading, type, depth Task: Get lat from soil_moisture where depth appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068492
train
v3
Sensor network script: Node: pressure | code: ref | fields: value, ts, lat, reading Sensor: air_quality | fields: lat, qc, depth, type Task: Retrieve value from pressure with reading above the MIN(value) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068493
train
v1
Sensor network script: Node: evaporation | code: gst | fields: qc, ts, type, unit Sensor: lightning | fields: qc, depth, lon, level Task: Get lon from evaporation where depth appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068494
train
v3
Sensor network script: Node: dew_point | code: clr | fields: type, unit, qc, level Sensor: humidity | fields: qc, ts, reading, level Task: Get lat from dew_point where depth exceeds the average value from humidity for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068495
train
v1
Sensor network script: Node: dew_point | code: thr | fields: qc, value, reading, depth Sensor: drought_index | fields: type, value, lon, level Task: Fetch depth from dew_point where depth exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068496
train
v3
Sensor network script: Node: rainfall | code: ref | fields: reading, lon, level, lat Sensor: evaporation | fields: level, type, lat, qc Task: Fetch lat from rainfall where value is greater than the average of depth in evaporation for matching type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068497
train
v2
Sensor network script: Node: evaporation | code: stn | fields: qc, unit, lat, type Sensor: drought_index | fields: reading, lon, lat, unit Task: Fetch level from evaporation that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068498
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, lat, type, qc Sensor: pressure | fields: type, depth, unit, reading Task: Fetch lat from soil_moisture that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068499
train