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: air_quality | code: stn | fields: reading, qc, lat, depth Sensor: sunlight | fields: ts, qc, depth, lat Task: Fetch depth from air_quality that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020000
train
v3
Sensor network script: Node: frost | code: thr | fields: depth, unit, type, ts Sensor: humidity | fields: reading, depth, qc, level Task: Fetch depth from frost where value is greater than the total of value in humidity for matching unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020001
train
v2
Sensor network script: Node: dew_point | code: prt | fields: depth, type, ts, lat Sensor: wind_speed | fields: reading, type, value, level Task: Get lat from dew_point where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020002
train
v1
Sensor network script: Node: uv_index | code: gst | fields: reading, unit, value, type Sensor: dew_point | fields: lat, value, level, qc Task: Get value from uv_index where depth appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020003
train
v1
Sensor network script: Node: rainfall | code: gst | fields: lat, level, reading, lon Sensor: dew_point | fields: qc, type, reading, unit Task: Fetch level from rainfall where type exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020004
train
v1
Sensor network script: Node: uv_index | code: stn | fields: ts, reading, lon, unit Sensor: frost | fields: level, depth, unit, lat Task: Get lat from uv_index where depth appears in frost readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020005
train
v3
Sensor network script: Node: visibility | code: stn | fields: depth, unit, lon, lat Sensor: dew_point | fields: value, lat, depth, lon Task: Get lat from visibility where value exceeds the total reading from dew_point for the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020006
train
v3
Sensor network script: Node: frost | code: prt | fields: lat, qc, unit, level Sensor: visibility | fields: type, level, qc, value Task: Fetch depth from frost where depth is greater than the count of of value in visibility for matching ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020007
train
v3
Sensor network script: Node: sunlight | code: clr | fields: lon, unit, ts, value Sensor: pressure | fields: type, depth, lat, ts Task: Retrieve lat from sunlight with depth above the MAX(depth) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020008
train
v3
Sensor network script: Node: temperature | code: stn | fields: level, lat, qc, ts Sensor: visibility | fields: reading, level, qc, lon Task: Get lon from temperature where depth exceeds the count of reading from visibility for the same depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020009
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: value, qc, unit, ts Sensor: lightning | fields: qc, ts, lat, value Task: Fetch value from snow_depth that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020010
train
v1
Sensor network script: Node: uv_index | code: stn | fields: unit, reading, qc, depth Sensor: air_quality | fields: unit, qc, reading, ts Task: Fetch depth from uv_index where unit exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020011
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lon, depth, ts, lat Sensor: cloud_cover | fields: qc, type, reading, lon Task: Retrieve lat from soil_moisture whose unit is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020012
train
v3
Sensor network script: Node: rainfall | code: hub | fields: unit, reading, ts, type Sensor: soil_moisture | fields: reading, lat, qc, depth Task: Retrieve lon from rainfall with value above the MAX(reading) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020013
train
v3
Sensor network script: Node: drought_index | code: ref | fields: reading, unit, value, level Sensor: soil_moisture | fields: level, type, ts, unit Task: Get depth from drought_index where value exceeds the maximum value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020014
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: reading, qc, value, depth Sensor: lightning | fields: reading, qc, lat, value Task: Get lon from cloud_cover where depth exceeds the total reading from lightning for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020015
train
v1
Sensor network script: Node: sunlight | code: hub | fields: value, lon, type, unit Sensor: snow_depth | fields: lon, qc, reading, unit Task: Retrieve depth from sunlight whose qc is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020016
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: lat, reading, qc, type Sensor: uv_index | fields: type, lon, reading, value Task: Retrieve lon from snow_depth with value above the MIN(value) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020017
train
v1
Sensor network script: Node: dew_point | code: clr | fields: level, value, qc, depth Sensor: soil_moisture | fields: ts, type, lat, level Task: Get lon from dew_point where depth appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020018
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: depth, type, lon, lat Sensor: evaporation | fields: value, level, lon, ts Task: Get level from snow_depth where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020019
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: type, ts, level, reading Sensor: drought_index | fields: value, depth, qc, type Task: Fetch level from soil_moisture that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020020
train
v2
Sensor network script: Node: turbidity | code: ref | fields: unit, type, value, lat Sensor: uv_index | fields: unit, reading, value, depth Task: Fetch lat from turbidity that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020021
train
v3
Sensor network script: Node: rainfall | code: gst | fields: qc, unit, depth, ts Sensor: sunlight | fields: lat, depth, reading, lon Task: Retrieve lon from rainfall with depth above the SUM(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020022
train
v1
Sensor network script: Node: uv_index | code: ref | fields: depth, lon, unit, lat Sensor: lightning | fields: depth, unit, ts, lon Task: Get lon from uv_index where type appears in lightning readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020023
train
v3
Sensor network script: Node: temperature | code: prt | fields: level, qc, value, unit Sensor: drought_index | fields: ts, type, depth, value Task: Get depth from temperature where reading exceeds the average value from drought_index for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020024
train
v2
Sensor network script: Node: visibility | code: hub | fields: ts, reading, depth, type Sensor: uv_index | fields: lon, depth, qc, value Task: Fetch depth from visibility that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020025
train
v1
Sensor network script: Node: temperature | code: stn | fields: ts, lon, qc, lat Sensor: rainfall | fields: type, depth, ts, reading Task: Fetch reading from temperature where qc exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020026
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: lon, type, unit, level Sensor: evaporation | fields: ts, unit, depth, lat Task: Fetch lat from cloud_cover that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020027
train
v2
Sensor network script: Node: drought_index | code: clr | fields: lon, lat, type, value Sensor: wind_speed | fields: reading, level, lon, depth Task: Get lat from drought_index where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020028
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: qc, ts, type, depth Sensor: visibility | fields: unit, depth, ts, qc Task: Get depth from wind_speed where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020029
train
v3
Sensor network script: Node: visibility | code: ref | fields: lon, value, type, lat Sensor: frost | fields: unit, lon, qc, value Task: Fetch level from visibility where reading is greater than the count of of value in frost for matching depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="depth"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020030
train
v3
Sensor network script: Node: drought_index | code: ref | fields: type, qc, reading, lon Sensor: uv_index | fields: depth, reading, lat, type Task: Retrieve lat from drought_index with reading above the MAX(reading) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020031
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lon, qc, reading, level Sensor: soil_moisture | fields: lat, ts, unit, type Task: Retrieve value from drought_index whose qc is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020032
train
v3
Sensor network script: Node: evaporation | code: thr | fields: type, lon, unit, level Sensor: humidity | fields: level, type, lon, value Task: Get lat from evaporation where value exceeds the count of depth from humidity for the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020033
train
v1
Sensor network script: Node: visibility | code: clr | fields: depth, reading, qc, lon Sensor: humidity | fields: qc, depth, type, value Task: Get reading from visibility where qc appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020034
train
v3
Sensor network script: Node: pressure | code: stn | fields: ts, type, qc, unit Sensor: cloud_cover | fields: type, unit, value, reading Task: Fetch value from pressure where reading is greater than the maximum of depth in cloud_cover for matching unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020035
train
v3
Sensor network script: Node: sunlight | code: stn | fields: level, type, unit, ts Sensor: frost | fields: level, lat, ts, qc Task: Retrieve lon from sunlight with depth above the MIN(value) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020036
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, qc, lon, depth Sensor: rainfall | fields: ts, type, unit, reading Task: Fetch lon from dew_point that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "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_020037
train
v3
Sensor network script: Node: lightning | code: clr | fields: lon, reading, value, depth Sensor: turbidity | fields: ts, lon, depth, value Task: Fetch lon from lightning where depth is greater than the average of value in turbidity for matching unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020038
train
v2
Sensor network script: Node: drought_index | code: mst | fields: reading, depth, lon, lat Sensor: turbidity | fields: value, unit, ts, lon Task: Get depth from drought_index where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020039
train
v1
Sensor network script: Node: rainfall | code: mst | fields: qc, ts, unit, level Sensor: uv_index | fields: reading, ts, lat, depth Task: Retrieve reading from rainfall whose type is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020040
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: type, lon, unit, ts Sensor: evaporation | fields: ts, lat, depth, type Task: Retrieve lat from wind_speed whose qc is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020041
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: depth, reading, lon, level Sensor: turbidity | fields: value, lon, ts, unit Task: Retrieve reading from cloud_cover with value above the AVG(reading) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020042
train
v1
Sensor network script: Node: drought_index | code: ref | fields: qc, value, lat, ts Sensor: wind_speed | fields: lon, depth, reading, qc Task: Get value from drought_index where qc appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020043
train
v3
Sensor network script: Node: uv_index | code: thr | fields: value, unit, level, lon Sensor: drought_index | fields: qc, ts, depth, type Task: Fetch lat from uv_index where value is greater than the minimum of depth in drought_index for matching type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020044
train
v1
Sensor network script: Node: rainfall | code: prt | fields: lat, unit, level, type Sensor: sunlight | fields: qc, lon, depth, ts Task: Get value from rainfall where unit appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020045
train
v3
Sensor network script: Node: lightning | code: mst | fields: depth, qc, value, level Sensor: snow_depth | fields: reading, lat, unit, ts Task: Get reading from lightning where value exceeds the maximum value from snow_depth for the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020046
train
v1
Sensor network script: Node: rainfall | code: ref | fields: unit, level, lat, reading Sensor: evaporation | fields: value, lat, qc, reading Task: Retrieve depth from rainfall whose depth is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020047
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: type, lon, unit, qc Sensor: turbidity | fields: level, value, depth, ts Task: Get lat from soil_moisture where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020048
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: unit, reading, qc, lon Sensor: soil_moisture | fields: reading, lat, type, lon Task: Retrieve value from cloud_cover with value above the COUNT(value) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020049
train
v1
Sensor network script: Node: dew_point | code: ref | fields: reading, value, level, unit Sensor: turbidity | fields: depth, type, lat, lon Task: Get level from dew_point where ts appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020050
train
v3
Sensor network script: Node: visibility | code: thr | fields: reading, value, type, level Sensor: air_quality | fields: lat, unit, type, ts Task: Fetch lat from visibility where depth is greater than the count of of reading in air_quality for matching qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020051
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: reading, lat, depth, level Sensor: uv_index | fields: ts, type, value, unit Task: Fetch value from cloud_cover that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020052
train
v2
Sensor network script: Node: pressure | code: stn | fields: lat, reading, value, level Sensor: dew_point | fields: lon, type, value, ts Task: Retrieve level from pressure that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020053
train
v2
Sensor network script: Node: pressure | code: mst | fields: lon, level, reading, unit Sensor: rainfall | fields: unit, ts, lon, type Task: Get lon from pressure where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "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_020054
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: depth, ts, lon, level Sensor: humidity | fields: depth, reading, lon, unit Task: Fetch lat from wind_speed where depth exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020055
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, lon, ts, depth Sensor: sunlight | fields: unit, level, depth, value Task: Fetch value from drought_index where value is greater than the count of of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020056
train
v3
Sensor network script: Node: rainfall | code: clr | fields: type, depth, lon, unit Sensor: frost | fields: unit, value, reading, ts Task: Get level from rainfall where value exceeds the maximum reading from frost for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020057
train
v1
Sensor network script: Node: drought_index | code: prt | fields: ts, type, lon, depth Sensor: sunlight | fields: type, lon, unit, qc Task: Retrieve reading from drought_index whose qc is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020058
train
v1
Sensor network script: Node: sunlight | code: clr | fields: depth, ts, qc, unit Sensor: uv_index | fields: depth, unit, lon, level Task: Fetch reading from sunlight where depth exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020059
train
v1
Sensor network script: Node: sunlight | code: clr | fields: lon, type, level, ts Sensor: evaporation | fields: lat, ts, reading, qc Task: Retrieve depth from sunlight whose type is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020060
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, ts, lon, unit Sensor: evaporation | fields: type, lon, value, lat Task: Fetch level from air_quality where reading is greater than the maximum of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020061
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: qc, depth, reading, ts Sensor: frost | fields: unit, depth, reading, qc Task: Retrieve value from soil_moisture with reading above the MIN(depth) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020062
train
v1
Sensor network script: Node: sunlight | code: ref | fields: unit, level, lon, qc Sensor: turbidity | fields: depth, type, value, qc Task: Get depth from sunlight where ts appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020063
train
v3
Sensor network script: Node: frost | code: hub | fields: value, qc, lon, unit Sensor: snow_depth | fields: level, reading, lat, unit Task: Retrieve reading from frost with reading above the MAX(value) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020064
train
v2
Sensor network script: Node: visibility | code: stn | fields: level, lon, type, ts Sensor: soil_moisture | fields: unit, ts, value, depth Task: Fetch value from visibility that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020065
train
v2
Sensor network script: Node: air_quality | code: hub | fields: type, qc, depth, value Sensor: lightning | fields: type, ts, lon, value Task: Get lat from air_quality where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020066
train
v1
Sensor network script: Node: humidity | code: mst | fields: lat, qc, lon, value Sensor: wind_speed | fields: lon, qc, unit, value Task: Get lon from humidity where unit appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020067
train
v3
Sensor network script: Node: evaporation | code: gst | fields: depth, lat, level, ts Sensor: lightning | fields: value, level, type, lon Task: Get value from evaporation where reading exceeds the count of depth from lightning for the same qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020068
train
v2
Sensor network script: Node: pressure | code: prt | fields: depth, ts, lon, unit Sensor: rainfall | fields: reading, ts, level, value Task: Fetch value from pressure that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020069
train
v1
Sensor network script: Node: air_quality | code: clr | fields: type, qc, lon, depth Sensor: snow_depth | fields: value, depth, qc, unit Task: Fetch depth from air_quality where qc exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020070
train
v2
Sensor network script: Node: uv_index | code: hub | fields: type, unit, depth, qc Sensor: soil_moisture | fields: value, depth, reading, lon Task: Get reading from uv_index where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020071
train
v2
Sensor network script: Node: frost | code: clr | fields: level, lat, qc, reading Sensor: air_quality | fields: reading, level, lat, lon Task: Retrieve depth from frost that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020072
train
v3
Sensor network script: Node: pressure | code: stn | fields: ts, lat, type, qc Sensor: visibility | fields: lon, qc, ts, level Task: Get lat from pressure where value exceeds the total depth from visibility for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020073
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: reading, lon, type, value Sensor: visibility | fields: type, lat, level, depth Task: Get value from soil_moisture where depth appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020074
train
v2
Sensor network script: Node: pressure | code: gst | fields: type, lat, depth, qc Sensor: frost | fields: lat, qc, lon, level Task: Get level from pressure where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020075
train
v3
Sensor network script: Node: uv_index | code: mst | fields: lon, depth, reading, type Sensor: humidity | fields: lon, level, depth, ts Task: Get value from uv_index where reading exceeds the total value from humidity for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020076
train
v1
Sensor network script: Node: visibility | code: hub | fields: qc, type, level, lat Sensor: rainfall | fields: value, depth, level, lat Task: Get reading from visibility where type appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020077
train
v3
Sensor network script: Node: pressure | code: hub | fields: lon, ts, level, reading Sensor: evaporation | fields: lat, ts, unit, qc Task: Retrieve lon from pressure with value above the MIN(depth) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020078
train
v2
Sensor network script: Node: visibility | code: mst | fields: value, qc, reading, depth Sensor: air_quality | fields: reading, lon, depth, type Task: Get level from visibility where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020079
train
v3
Sensor network script: Node: dew_point | code: ref | fields: depth, reading, qc, unit Sensor: wind_speed | fields: ts, reading, level, unit Task: Fetch depth from dew_point where value is greater than the count of of value in wind_speed for matching type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020080
train
v1
Sensor network script: Node: evaporation | code: prt | fields: value, type, depth, lon Sensor: pressure | fields: ts, reading, value, depth Task: Fetch lon from evaporation where unit exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020081
train
v3
Sensor network script: Node: humidity | code: gst | fields: qc, lat, depth, lon Sensor: visibility | fields: reading, depth, lon, value Task: Fetch lat from humidity where depth is greater than the maximum of value in visibility for matching ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020082
train
v1
Sensor network script: Node: lightning | code: gst | fields: level, value, depth, unit Sensor: visibility | fields: value, reading, ts, lon Task: Fetch value from lightning where unit exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020083
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: ts, lat, depth, reading Sensor: drought_index | fields: depth, type, reading, lat Task: Fetch level from cloud_cover where qc exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020084
train
v1
Sensor network script: Node: temperature | code: ref | fields: level, type, lon, ts Sensor: evaporation | fields: unit, lon, depth, reading Task: Retrieve reading from temperature whose depth is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020085
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: lon, level, qc, ts Sensor: pressure | fields: unit, depth, type, qc Task: Get lat from soil_moisture where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020086
train
v3
Sensor network script: Node: pressure | code: hub | fields: value, depth, lon, unit Sensor: air_quality | fields: depth, reading, value, unit Task: Get lon from pressure where value exceeds the minimum depth from air_quality for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020087
train
v1
Sensor network script: Node: air_quality | code: gst | fields: depth, level, type, value Sensor: cloud_cover | fields: ts, lon, type, value Task: Fetch level from air_quality where unit exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020088
train
v3
Sensor network script: Node: drought_index | code: mst | fields: lat, reading, qc, depth Sensor: turbidity | fields: depth, unit, lon, lat Task: Retrieve lat from drought_index with depth above the SUM(depth) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020089
train
v2
Sensor network script: Node: rainfall | code: thr | fields: depth, unit, lat, ts Sensor: lightning | fields: lon, unit, reading, lat Task: Fetch lat from rainfall that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020090
train
v3
Sensor network script: Node: drought_index | code: mst | fields: lat, depth, qc, level Sensor: temperature | fields: depth, lon, unit, lat Task: Get depth from drought_index where reading exceeds the count of depth from temperature for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020091
train
v1
Sensor network script: Node: rainfall | code: mst | fields: reading, type, value, lon Sensor: temperature | fields: lat, value, lon, reading Task: Get lon from rainfall where unit appears in temperature readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020092
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: unit, level, lat, ts Sensor: temperature | fields: ts, qc, type, reading Task: Get lat from wind_speed where unit appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020093
train
v1
Sensor network script: Node: sunlight | code: ref | fields: value, unit, qc, ts Sensor: cloud_cover | fields: ts, qc, level, lat Task: Get reading from sunlight where type appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020094
train
v3
Sensor network script: Node: rainfall | code: ref | fields: unit, depth, value, lat Sensor: uv_index | fields: lat, qc, depth, reading Task: Get lon from rainfall where depth exceeds the total value from uv_index for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020095
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lat, depth, ts, lon Sensor: humidity | fields: depth, type, unit, ts Task: Get value from wind_speed where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020096
train
v1
Sensor network script: Node: pressure | code: clr | fields: value, reading, ts, level Sensor: evaporation | fields: value, lat, reading, depth Task: Get lon from pressure where unit appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020097
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, value, lon, type Sensor: frost | fields: unit, ts, lat, reading Task: Retrieve lon from dew_point whose qc is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020098
train
v3
Sensor network script: Node: pressure | code: thr | fields: type, level, value, depth Sensor: humidity | fields: lon, type, qc, lat Task: Retrieve lat from pressure with reading above the AVG(value) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020099
train