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: visibility | code: ref | fields: level, reading, ts, lat Sensor: temperature | fields: level, unit, depth, reading Task: Get value from visibility where ts appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014500
train
v1
Sensor network script: Node: uv_index | code: stn | fields: lat, qc, level, reading Sensor: pressure | fields: value, lat, qc, level Task: Fetch reading from uv_index where qc exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014501
train
v1
Sensor network script: Node: drought_index | code: gst | fields: lon, reading, qc, ts Sensor: turbidity | fields: level, lon, qc, unit Task: Fetch level from drought_index where ts exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014502
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: reading, type, lat, unit Sensor: frost | fields: type, value, depth, lat Task: Fetch depth from cloud_cover where unit exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014503
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: level, lon, lat, depth Sensor: uv_index | fields: type, unit, level, depth Task: Retrieve lon from wind_speed that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014504
train
v3
Sensor network script: Node: rainfall | code: mst | fields: value, reading, unit, type Sensor: visibility | fields: value, unit, lat, qc Task: Retrieve lat from rainfall with value above the COUNT(value) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014505
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, ts, type, reading Sensor: soil_moisture | fields: level, ts, value, type Task: Get lat from air_quality where depth exceeds the average value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014506
train
v1
Sensor network script: Node: frost | code: mst | fields: value, reading, type, level Sensor: soil_moisture | fields: qc, value, reading, depth Task: Fetch lat from frost where ts exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014507
train
v1
Sensor network script: Node: air_quality | code: gst | fields: ts, type, value, reading Sensor: drought_index | fields: level, value, unit, type Task: Fetch lat from air_quality where unit exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014508
train
v2
Sensor network script: Node: dew_point | code: gst | fields: type, unit, lon, reading Sensor: pressure | fields: lat, lon, level, ts Task: Fetch depth from dew_point that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014509
train
v2
Sensor network script: Node: dew_point | code: gst | fields: value, ts, type, depth Sensor: frost | fields: unit, ts, type, value Task: Retrieve lon from dew_point that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014510
train
v1
Sensor network script: Node: turbidity | code: gst | fields: type, unit, ts, lon Sensor: air_quality | fields: qc, depth, level, value Task: Fetch lat from turbidity where ts exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014511
train
v1
Sensor network script: Node: evaporation | code: gst | fields: lat, depth, lon, reading Sensor: temperature | fields: reading, ts, level, unit Task: Get lat from evaporation where depth appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014512
train
v2
Sensor network script: Node: temperature | code: mst | fields: lon, level, ts, type Sensor: visibility | fields: depth, level, ts, lon Task: Fetch lon from temperature that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014513
train
v3
Sensor network script: Node: dew_point | code: mst | fields: lon, reading, value, type Sensor: pressure | fields: level, qc, lat, reading Task: Get value from dew_point where depth exceeds the total value from pressure for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014514
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: type, qc, depth, unit Sensor: cloud_cover | fields: lat, lon, type, reading Task: Fetch lat from snow_depth that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014515
train
v1
Sensor network script: Node: lightning | code: ref | fields: level, qc, ts, type Sensor: humidity | fields: ts, depth, qc, level Task: Retrieve value from lightning whose unit is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014516
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: type, lat, ts, qc Sensor: temperature | fields: type, ts, lat, lon Task: Retrieve depth from soil_moisture with value above the MAX(depth) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014517
train
v1
Sensor network script: Node: drought_index | code: mst | fields: depth, value, lon, type Sensor: dew_point | fields: lat, reading, type, value Task: Get level from drought_index where unit appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014518
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: type, lat, lon, level Sensor: turbidity | fields: depth, level, lon, qc Task: Fetch value from wind_speed that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014519
train
v3
Sensor network script: Node: uv_index | code: prt | fields: reading, lon, qc, value Sensor: cloud_cover | fields: level, depth, lat, value Task: Fetch depth from uv_index where reading is greater than the average of reading in cloud_cover for matching unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014520
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: level, reading, lat, qc Sensor: pressure | fields: depth, unit, lon, lat Task: Get level from wind_speed where depth exceeds the average reading from pressure for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014521
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: level, ts, depth, value Sensor: lightning | fields: reading, level, type, qc Task: Get level from soil_moisture where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014522
train
v1
Sensor network script: Node: lightning | code: prt | fields: value, lon, reading, depth Sensor: uv_index | fields: value, level, qc, reading Task: Get depth from lightning where type appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014523
train
v2
Sensor network script: Node: sunlight | code: stn | fields: value, depth, lon, unit Sensor: humidity | fields: unit, depth, reading, level Task: Get value from sunlight where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014524
train
v2
Sensor network script: Node: uv_index | code: clr | fields: unit, qc, type, lon Sensor: lightning | fields: ts, qc, reading, lon Task: Retrieve level from uv_index that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014525
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lat, qc, ts, unit Sensor: lightning | fields: level, type, depth, qc Task: Fetch depth from soil_moisture where depth exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014526
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: ts, level, value, type Sensor: soil_moisture | fields: depth, reading, qc, lat Task: Get value from snow_depth where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014527
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: lat, type, reading, qc Sensor: evaporation | fields: ts, depth, lon, reading Task: Fetch value from cloud_cover where value is greater than the minimum of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014528
train
v3
Sensor network script: Node: humidity | code: clr | fields: type, ts, lat, level Sensor: soil_moisture | fields: reading, type, lat, unit Task: Fetch lon from humidity where depth is greater than the minimum of depth in soil_moisture for matching ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014529
train
v3
Sensor network script: Node: frost | code: thr | fields: ts, lat, value, reading Sensor: cloud_cover | fields: ts, unit, reading, qc Task: Get lon from frost where reading exceeds the count of reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014530
train
v2
Sensor network script: Node: lightning | code: thr | fields: depth, reading, lon, lat Sensor: turbidity | fields: lat, ts, level, lon Task: Get depth from lightning where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014531
train
v3
Sensor network script: Node: temperature | code: prt | fields: lat, value, unit, level Sensor: evaporation | fields: unit, reading, level, qc Task: Fetch lat from temperature where value is greater than the average of value in evaporation for matching qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014532
train
v2
Sensor network script: Node: air_quality | code: hub | fields: type, reading, depth, qc Sensor: wind_speed | fields: ts, type, unit, depth Task: Retrieve depth from air_quality that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014533
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: ts, unit, depth, qc Sensor: sunlight | fields: value, unit, reading, level Task: Fetch lat from soil_moisture that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014534
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: lat, lon, unit, reading Sensor: visibility | fields: qc, ts, unit, depth Task: Retrieve depth from wind_speed whose depth is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014535
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: ts, lat, unit, lon Sensor: visibility | fields: ts, level, type, lon Task: Fetch lat from soil_moisture that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014536
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lat, type, ts, value Sensor: soil_moisture | fields: level, ts, qc, unit Task: Fetch reading from cloud_cover where type exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014537
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: reading, level, type, lat Sensor: temperature | fields: ts, reading, level, depth Task: Get depth from cloud_cover where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014538
train
v1
Sensor network script: Node: visibility | code: prt | fields: lon, ts, value, type Sensor: soil_moisture | fields: ts, qc, unit, lat Task: Fetch value from visibility where unit exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014539
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: unit, ts, lat, level Sensor: pressure | fields: reading, qc, level, type Task: Retrieve level from soil_moisture whose ts is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014540
train
v3
Sensor network script: Node: frost | code: thr | fields: reading, value, unit, qc Sensor: drought_index | fields: qc, lat, type, level Task: Fetch depth from frost where depth is greater than the maximum of depth in drought_index for matching unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014541
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: qc, lon, level, type Sensor: turbidity | fields: value, reading, ts, depth Task: Get level from cloud_cover where depth exceeds the maximum depth from turbidity for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014542
train
v3
Sensor network script: Node: dew_point | code: clr | fields: value, ts, unit, reading Sensor: pressure | fields: qc, level, lat, depth Task: Get level from dew_point where value exceeds the count of depth from pressure for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014543
train
v2
Sensor network script: Node: pressure | code: stn | fields: lat, lon, level, type Sensor: visibility | fields: level, unit, type, lon Task: Get reading from pressure where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014544
train
v3
Sensor network script: Node: humidity | code: mst | fields: qc, type, depth, lat Sensor: visibility | fields: value, depth, level, qc Task: Retrieve reading from humidity with value above the SUM(depth) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014545
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: ts, type, value, level Sensor: dew_point | fields: ts, value, unit, lat Task: Fetch reading from snow_depth that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014546
train
v2
Sensor network script: Node: sunlight | code: stn | fields: type, qc, lon, lat Sensor: evaporation | fields: ts, depth, unit, lon Task: Get reading from sunlight where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014547
train
v3
Sensor network script: Node: air_quality | code: clr | fields: lon, depth, reading, type Sensor: wind_speed | fields: ts, type, unit, value Task: Get lon from air_quality where reading exceeds the minimum value from wind_speed for the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014548
train
v2
Sensor network script: Node: pressure | code: thr | fields: qc, depth, unit, value Sensor: rainfall | fields: reading, value, level, unit Task: Retrieve level from pressure that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014549
train
v2
Sensor network script: Node: pressure | code: hub | fields: unit, type, lon, ts Sensor: sunlight | fields: level, value, ts, qc Task: Get level from pressure where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014550
train
v3
Sensor network script: Node: temperature | code: mst | fields: unit, value, ts, reading Sensor: cloud_cover | fields: level, unit, lat, type Task: Get reading from temperature where depth exceeds the total value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014551
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lon, level, type, value Sensor: evaporation | fields: ts, lon, level, value Task: Fetch lon from rainfall that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014552
train
v1
Sensor network script: Node: temperature | code: ref | fields: ts, level, value, type Sensor: air_quality | fields: depth, value, qc, lat Task: Get lon from temperature where type appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014553
train
v2
Sensor network script: Node: drought_index | code: stn | fields: depth, type, qc, unit Sensor: sunlight | fields: value, qc, depth, unit Task: Get value from drought_index where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014554
train
v2
Sensor network script: Node: air_quality | code: ref | fields: lat, type, qc, reading Sensor: rainfall | fields: type, lat, lon, qc Task: Fetch value from air_quality that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014555
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lon, depth, ts, reading Sensor: frost | fields: level, lat, type, ts Task: Get level from turbidity where value exceeds the minimum depth from frost for the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014556
train
v3
Sensor network script: Node: frost | code: hub | fields: ts, type, depth, lat Sensor: visibility | fields: lon, ts, lat, depth Task: Get depth from frost where value exceeds the average depth from visibility for the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014557
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lat, level, type, qc Sensor: temperature | fields: ts, depth, type, qc Task: Get lat from air_quality where unit appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014558
train
v1
Sensor network script: Node: pressure | code: stn | fields: value, unit, type, qc Sensor: wind_speed | fields: unit, type, lat, value Task: Get depth from pressure where qc appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014559
train
v2
Sensor network script: Node: sunlight | code: mst | fields: unit, level, reading, lon Sensor: rainfall | fields: unit, lon, lat, value Task: Fetch lon from sunlight that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014560
train
v3
Sensor network script: Node: visibility | code: thr | fields: reading, ts, lon, type Sensor: air_quality | fields: value, reading, qc, ts Task: Retrieve reading from visibility with depth above the MIN(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014561
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: depth, type, qc, level Sensor: cloud_cover | fields: lat, qc, type, lon Task: Get lon from soil_moisture where value exceeds the count of reading from cloud_cover for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014562
train
v3
Sensor network script: Node: sunlight | code: clr | fields: value, depth, type, reading Sensor: frost | fields: lat, qc, level, reading Task: Fetch depth from sunlight where depth is greater than the maximum of reading in frost for matching unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014563
train
v3
Sensor network script: Node: drought_index | code: clr | fields: qc, lat, type, value Sensor: cloud_cover | fields: ts, lat, level, qc Task: Get depth from drought_index where reading exceeds the count of reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014564
train
v1
Sensor network script: Node: air_quality | code: mst | fields: unit, depth, lat, lon Sensor: pressure | fields: reading, depth, qc, type Task: Fetch lon from air_quality where qc exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014565
train
v2
Sensor network script: Node: pressure | code: prt | fields: lon, reading, qc, value Sensor: wind_speed | fields: type, lon, level, ts Task: Get lon from pressure where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014566
train
v1
Sensor network script: Node: air_quality | code: prt | fields: level, depth, reading, lon Sensor: snow_depth | fields: level, reading, lon, unit Task: Fetch lon from air_quality where ts exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014567
train
v3
Sensor network script: Node: lightning | code: stn | fields: lat, type, level, lon Sensor: evaporation | fields: reading, level, lon, qc Task: Fetch reading from lightning where reading is greater than the total of value in evaporation for matching unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014568
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: unit, qc, reading, value Sensor: lightning | fields: qc, ts, lat, lon Task: Fetch lat from snow_depth where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014569
train
v3
Sensor network script: Node: turbidity | code: stn | fields: ts, type, lon, value Sensor: air_quality | fields: level, value, depth, unit Task: Retrieve reading from turbidity with reading above the MIN(value) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014570
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: lat, reading, depth, unit Sensor: temperature | fields: unit, value, type, ts Task: Get reading from soil_moisture where depth exceeds the total reading from temperature for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014571
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: value, ts, reading, lon Sensor: humidity | fields: value, reading, unit, lat Task: Retrieve value from wind_speed with value above the AVG(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014572
train
v2
Sensor network script: Node: sunlight | code: stn | fields: ts, depth, value, type Sensor: temperature | fields: lat, lon, depth, qc Task: Fetch lat from sunlight that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014573
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: qc, type, lon, value Sensor: drought_index | fields: level, value, lat, ts Task: Fetch value from wind_speed that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014574
train
v1
Sensor network script: Node: sunlight | code: gst | fields: reading, lon, level, qc Sensor: drought_index | fields: level, ts, value, type Task: Fetch value from sunlight where type exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014575
train
v2
Sensor network script: Node: visibility | code: ref | fields: value, reading, qc, ts Sensor: wind_speed | fields: reading, level, value, type Task: Get level from visibility where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014576
train
v2
Sensor network script: Node: humidity | code: ref | fields: lon, type, depth, value Sensor: turbidity | fields: qc, value, lon, ts Task: Fetch lon from humidity that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014577
train
v2
Sensor network script: Node: uv_index | code: gst | fields: depth, qc, lat, level Sensor: humidity | fields: value, ts, unit, qc Task: Get lat from uv_index where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014578
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: depth, qc, level, type Sensor: soil_moisture | fields: ts, lon, lat, reading Task: Get lat from wind_speed where qc appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014579
train
v3
Sensor network script: Node: sunlight | code: thr | fields: lat, type, unit, depth Sensor: turbidity | fields: lat, level, qc, reading Task: Get level from sunlight where value exceeds the maximum value from turbidity for the same unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014580
train
v1
Sensor network script: Node: sunlight | code: clr | fields: lat, qc, lon, ts Sensor: lightning | fields: reading, ts, lat, qc Task: Fetch lon from sunlight where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014581
train
v3
Sensor network script: Node: visibility | code: gst | fields: unit, qc, ts, level Sensor: frost | fields: type, depth, reading, qc Task: Fetch depth from visibility where depth is greater than the count of of reading in frost for matching qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014582
train
v2
Sensor network script: Node: rainfall | code: hub | fields: lon, lat, depth, reading Sensor: humidity | fields: level, depth, type, value Task: Fetch level from rainfall that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014583
train
v3
Sensor network script: Node: dew_point | code: prt | fields: type, lon, qc, unit Sensor: visibility | fields: lat, type, unit, depth Task: Retrieve value from dew_point with reading above the SUM(reading) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014584
train
v2
Sensor network script: Node: turbidity | code: mst | fields: depth, ts, qc, reading Sensor: lightning | fields: depth, unit, ts, qc Task: Fetch value from turbidity that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014585
train
v1
Sensor network script: Node: air_quality | code: clr | fields: qc, value, depth, lat Sensor: temperature | fields: value, lon, unit, depth Task: Fetch level from air_quality where type exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014586
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: type, qc, unit, depth Sensor: soil_moisture | fields: depth, lon, lat, value Task: Get lat from snow_depth where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014587
train
v2
Sensor network script: Node: rainfall | code: gst | fields: depth, ts, type, value Sensor: turbidity | fields: level, value, ts, qc Task: Get depth from rainfall where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014588
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: lon, value, type, reading Sensor: drought_index | fields: lon, reading, qc, depth Task: Retrieve level from soil_moisture whose unit is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014589
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: lat, depth, qc, unit Sensor: soil_moisture | fields: qc, level, value, reading Task: Get lon from wind_speed where unit appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014590
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: lon, qc, value, ts Sensor: humidity | fields: lat, level, ts, unit Task: Fetch lon from snow_depth where reading is greater than the minimum of value in humidity for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014591
train
v3
Sensor network script: Node: evaporation | code: hub | fields: unit, depth, qc, value Sensor: air_quality | fields: lon, qc, ts, type Task: Fetch level from evaporation where reading is greater than the maximum of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014592
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: depth, lon, ts, lat Sensor: frost | fields: reading, lon, unit, qc Task: Get value from wind_speed where qc appears in frost readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014593
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: type, depth, lon, ts Sensor: lightning | fields: lat, reading, value, unit Task: Get lat from wind_speed where qc appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014594
train
v3
Sensor network script: Node: rainfall | code: prt | fields: value, type, qc, depth Sensor: temperature | fields: value, lon, reading, lat Task: Retrieve value from rainfall with depth above the MIN(depth) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014595
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lat, level, value, unit Sensor: visibility | fields: type, ts, value, reading Task: Get level from sunlight where reading exceeds the average value from visibility for the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014596
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: qc, unit, lat, depth Sensor: soil_moisture | fields: lon, type, value, ts Task: Get level from snow_depth where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014597
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, type, depth, ts Sensor: snow_depth | fields: level, qc, value, lon Task: Fetch depth from dew_point where unit exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_014598
train
v3
Sensor network script: Node: lightning | code: mst | fields: depth, lat, value, reading Sensor: visibility | fields: lat, lon, qc, depth Task: Retrieve level from lightning with reading above the SUM(depth) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_014599
train