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: temperature | code: mst | fields: reading, depth, value, unit Sensor: air_quality | fields: lat, unit, value, type Task: Get level from temperature where unit appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006100
train
v1
Sensor network script: Node: uv_index | code: clr | fields: depth, ts, reading, qc Sensor: humidity | fields: depth, type, value, qc Task: Fetch value from uv_index where qc exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006101
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, lat, value, type Sensor: visibility | fields: value, unit, depth, level Task: Fetch lat from soil_moisture where depth is greater than the minimum of depth in visibility for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006102
train
v2
Sensor network script: Node: uv_index | code: thr | fields: value, level, reading, lat Sensor: snow_depth | fields: ts, value, depth, qc Task: Fetch reading from uv_index that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006103
train
v2
Sensor network script: Node: lightning | code: thr | fields: value, lon, reading, type Sensor: visibility | fields: type, depth, level, value Task: Fetch lat from lightning that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006104
train
v1
Sensor network script: Node: evaporation | code: ref | fields: unit, reading, level, value Sensor: cloud_cover | fields: level, reading, value, lat Task: Get depth from evaporation where ts appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006105
train
v3
Sensor network script: Node: dew_point | code: thr | fields: unit, value, ts, lon Sensor: visibility | fields: lat, qc, depth, reading Task: Fetch lon from dew_point where reading is greater than the total of depth in visibility for matching unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006106
train
v1
Sensor network script: Node: dew_point | code: stn | fields: lat, value, type, lon Sensor: turbidity | fields: level, qc, ts, lat Task: Fetch value from dew_point where type exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006107
train
v1
Sensor network script: Node: humidity | code: gst | fields: value, unit, lon, reading Sensor: rainfall | fields: unit, depth, level, lon Task: Get reading from humidity where unit appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006108
train
v2
Sensor network script: Node: sunlight | code: ref | fields: lat, lon, value, level Sensor: soil_moisture | fields: ts, lat, level, value Task: Retrieve lat from sunlight that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006109
train
v1
Sensor network script: Node: drought_index | code: clr | fields: depth, ts, type, value Sensor: pressure | fields: reading, lat, value, qc Task: Retrieve level from drought_index whose type is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006110
train
v3
Sensor network script: Node: uv_index | code: gst | fields: lon, level, reading, depth Sensor: lightning | fields: unit, type, ts, depth Task: Fetch level from uv_index where value is greater than the maximum of depth in lightning for matching type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006111
train
v3
Sensor network script: Node: visibility | code: ref | fields: value, unit, qc, lon Sensor: rainfall | fields: depth, lon, reading, value Task: Get reading from visibility where reading exceeds the maximum value from rainfall for the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006112
train
v3
Sensor network script: Node: humidity | code: gst | fields: ts, value, lon, unit Sensor: evaporation | fields: type, qc, level, depth Task: Retrieve value from humidity with depth above the COUNT(reading) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006113
train
v3
Sensor network script: Node: drought_index | code: ref | fields: type, ts, level, lon Sensor: dew_point | fields: lat, type, value, reading Task: Fetch reading from drought_index where depth is greater than the minimum of reading in dew_point for matching unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006114
train
v1
Sensor network script: Node: evaporation | code: ref | fields: value, lon, lat, level Sensor: uv_index | fields: lon, reading, depth, ts Task: Get value from evaporation where unit appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006115
train
v1
Sensor network script: Node: pressure | code: prt | fields: level, qc, reading, value Sensor: humidity | fields: qc, lon, depth, value Task: Get value from pressure where ts appears in humidity readings with matching type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006116
train
v1
Sensor network script: Node: air_quality | code: ref | fields: lat, qc, ts, value Sensor: temperature | fields: lat, type, reading, ts Task: Get level from air_quality where unit appears in temperature readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006117
train
v2
Sensor network script: Node: temperature | code: prt | fields: lat, level, unit, qc Sensor: turbidity | fields: level, depth, value, ts Task: Get lon from temperature where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006118
train
v3
Sensor network script: Node: sunlight | code: mst | fields: type, qc, lon, unit Sensor: evaporation | fields: depth, value, reading, ts Task: Fetch reading from sunlight where reading is greater than the maximum of value in evaporation for matching qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006119
train
v3
Sensor network script: Node: evaporation | code: ref | fields: unit, ts, type, level Sensor: snow_depth | fields: reading, unit, type, lon Task: Fetch value from evaporation where reading is greater than the average of reading in snow_depth for matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006120
train
v3
Sensor network script: Node: frost | code: mst | fields: lat, ts, type, level Sensor: evaporation | fields: qc, reading, type, lat Task: Get lat from frost where reading exceeds the average value from evaporation for the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006121
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: depth, lon, unit, value Sensor: lightning | fields: type, ts, depth, lat Task: Get lon from wind_speed where ts appears in lightning readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006122
train
v1
Sensor network script: Node: turbidity | code: ref | fields: lat, unit, qc, level Sensor: uv_index | fields: type, reading, level, value Task: Get value from turbidity where depth appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006123
train
v1
Sensor network script: Node: temperature | code: prt | fields: qc, level, lon, value Sensor: wind_speed | fields: depth, lon, type, ts Task: Get lon from temperature where ts appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006124
train
v1
Sensor network script: Node: visibility | code: gst | fields: value, depth, unit, ts Sensor: snow_depth | fields: reading, value, lat, unit Task: Fetch lat from visibility where type exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006125
train
v3
Sensor network script: Node: frost | code: stn | fields: unit, depth, lat, qc Sensor: soil_moisture | fields: value, ts, level, lon Task: Get depth from frost where depth exceeds the maximum value from soil_moisture for the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006126
train
v2
Sensor network script: Node: lightning | code: stn | fields: unit, type, reading, ts Sensor: cloud_cover | fields: type, level, value, lat Task: Fetch lon from lightning that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006127
train
v2
Sensor network script: Node: drought_index | code: ref | fields: unit, depth, value, reading Sensor: turbidity | fields: qc, reading, ts, unit Task: Retrieve lat from drought_index that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006128
train
v1
Sensor network script: Node: humidity | code: hub | fields: type, level, ts, lat Sensor: uv_index | fields: ts, unit, lat, value Task: Fetch level from humidity where qc exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006129
train
v2
Sensor network script: Node: sunlight | code: gst | fields: lon, reading, unit, qc Sensor: soil_moisture | fields: depth, ts, type, level Task: Get level from sunlight where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006130
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: type, level, unit, qc Sensor: pressure | fields: reading, level, type, unit Task: Fetch depth from snow_depth that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "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_006131
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: depth, level, qc, value Sensor: dew_point | fields: type, qc, level, depth Task: Retrieve value from snow_depth with depth above the COUNT(depth) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006132
train
v3
Sensor network script: Node: sunlight | code: hub | fields: lat, level, type, lon Sensor: lightning | fields: qc, lon, unit, ts Task: Get value from sunlight where reading exceeds the minimum depth from lightning for the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006133
train
v2
Sensor network script: Node: visibility | code: stn | fields: level, depth, ts, value Sensor: turbidity | fields: unit, level, value, ts Task: Retrieve reading from visibility that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006134
train
v3
Sensor network script: Node: lightning | code: mst | fields: reading, type, unit, lat Sensor: sunlight | fields: value, depth, reading, lon Task: Fetch lon from lightning where value is greater than the minimum of depth in sunlight for matching type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006135
train
v2
Sensor network script: Node: pressure | code: hub | fields: lon, reading, qc, ts Sensor: temperature | fields: value, level, lon, type Task: Fetch lat from pressure that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006136
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: depth, lon, reading, type Sensor: sunlight | fields: lat, qc, depth, lon Task: Get level from soil_moisture where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006137
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, reading, level, ts Sensor: cloud_cover | fields: value, lat, depth, type Task: Fetch depth from lightning where reading is greater than the maximum of depth in cloud_cover for matching depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006138
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: ts, lat, qc, level Sensor: soil_moisture | fields: lon, reading, type, ts Task: Get level from cloud_cover where depth exceeds the average value from soil_moisture for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006139
train
v3
Sensor network script: Node: uv_index | code: hub | fields: reading, lat, qc, ts Sensor: evaporation | fields: level, lon, qc, unit Task: Fetch level from uv_index where depth is greater than the count of of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006140
train
v1
Sensor network script: Node: pressure | code: ref | fields: unit, value, level, lon Sensor: wind_speed | fields: value, ts, level, qc Task: Retrieve lon from pressure whose unit is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006141
train
v3
Sensor network script: Node: temperature | code: ref | fields: ts, type, qc, depth Sensor: air_quality | fields: unit, qc, depth, lon Task: Get depth from temperature where value exceeds the maximum value from air_quality for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006142
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: type, qc, lat, level Sensor: air_quality | fields: lat, reading, qc, level Task: Get depth from wind_speed where value exceeds the count of depth from air_quality for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006143
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: value, reading, ts, level Sensor: uv_index | fields: reading, lat, qc, unit Task: Get level from soil_moisture where depth exceeds the total value from uv_index for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006144
train
v1
Sensor network script: Node: humidity | code: clr | fields: unit, reading, depth, value Sensor: lightning | fields: lat, depth, unit, qc Task: Retrieve depth from humidity whose type is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006145
train
v1
Sensor network script: Node: frost | code: clr | fields: depth, lat, qc, value Sensor: rainfall | fields: ts, reading, lon, type Task: Fetch reading from frost where depth exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006146
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: value, depth, qc, level Sensor: drought_index | fields: level, type, value, lat Task: Fetch reading from soil_moisture where qc exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006147
train
v1
Sensor network script: Node: visibility | code: stn | fields: qc, lon, type, value Sensor: drought_index | fields: unit, ts, qc, depth Task: Get level from visibility where unit appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006148
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: reading, lon, ts, unit Sensor: pressure | fields: reading, depth, value, unit Task: Fetch level from snow_depth where depth is greater than the total of value in pressure for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006149
train
v1
Sensor network script: Node: temperature | code: thr | fields: level, lat, type, lon Sensor: soil_moisture | fields: ts, level, type, depth Task: Get depth from temperature where unit appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006150
train
v1
Sensor network script: Node: lightning | code: ref | fields: type, ts, reading, lon Sensor: humidity | fields: value, reading, lat, type Task: Get reading from lightning where type appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006151
train
v2
Sensor network script: Node: turbidity | code: stn | fields: ts, type, qc, value Sensor: soil_moisture | fields: level, value, lat, unit Task: Retrieve value from turbidity that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "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_006152
train
v3
Sensor network script: Node: uv_index | code: stn | fields: reading, type, depth, unit Sensor: snow_depth | fields: level, ts, reading, unit Task: Fetch lon from uv_index where depth is greater than the maximum of depth in snow_depth for matching depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006153
train
v3
Sensor network script: Node: uv_index | code: stn | fields: reading, type, ts, unit Sensor: humidity | fields: reading, unit, ts, depth Task: Fetch lon from uv_index where value is greater than the maximum of depth in humidity for matching type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006154
train
v2
Sensor network script: Node: rainfall | code: gst | fields: lon, level, qc, lat Sensor: drought_index | fields: qc, depth, unit, value Task: Fetch value from rainfall that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006155
train
v1
Sensor network script: Node: lightning | code: stn | fields: qc, depth, lat, unit Sensor: turbidity | fields: reading, unit, type, level Task: Get level from lightning where qc appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006156
train
v1
Sensor network script: Node: frost | code: hub | fields: type, lat, value, lon Sensor: turbidity | fields: ts, value, type, qc Task: Retrieve lon from frost whose qc is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006157
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: unit, lat, reading, type Sensor: air_quality | fields: reading, ts, qc, value Task: Fetch value from cloud_cover where reading is greater than the count of of depth in air_quality for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006158
train
v1
Sensor network script: Node: frost | code: clr | fields: value, unit, reading, ts Sensor: uv_index | fields: unit, lon, ts, type Task: Fetch lon from frost where qc exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006159
train
v3
Sensor network script: Node: temperature | code: gst | fields: value, depth, type, reading Sensor: pressure | fields: lat, level, type, depth Task: Fetch value from temperature where reading is greater than the total of value in pressure for matching qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006160
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, depth, unit, qc Sensor: temperature | fields: type, level, reading, depth Task: Retrieve reading from lightning with depth above the MIN(reading) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006161
train
v3
Sensor network script: Node: air_quality | code: ref | fields: unit, reading, ts, lon Sensor: turbidity | fields: ts, unit, qc, level Task: Fetch depth from air_quality where depth is greater than the minimum of depth in turbidity for matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006162
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lon, lat, unit, type Sensor: rainfall | fields: ts, qc, type, level Task: Retrieve value from wind_speed that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006163
train
v3
Sensor network script: Node: rainfall | code: prt | fields: unit, value, type, level Sensor: turbidity | fields: type, level, unit, lat Task: Retrieve level from rainfall with depth above the SUM(depth) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006164
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: level, reading, qc, value Sensor: drought_index | fields: ts, lon, value, level Task: Retrieve reading from soil_moisture whose qc is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006165
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: lon, level, reading, ts Sensor: humidity | fields: qc, unit, level, reading Task: Fetch lon from cloud_cover where depth is greater than the minimum of depth in humidity for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006166
train
v3
Sensor network script: Node: uv_index | code: ref | fields: reading, lat, depth, ts Sensor: drought_index | fields: value, type, reading, depth Task: Retrieve value from uv_index with depth above the MAX(reading) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006167
train
v2
Sensor network script: Node: temperature | code: gst | fields: lon, lat, type, value Sensor: lightning | fields: type, lat, qc, level Task: Fetch level from temperature that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006168
train
v1
Sensor network script: Node: visibility | code: thr | fields: qc, reading, level, lat Sensor: frost | fields: lat, depth, type, unit Task: Fetch depth from visibility where qc exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006169
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: type, value, reading, ts Sensor: dew_point | fields: depth, type, reading, value Task: Retrieve reading from soil_moisture that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006170
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: type, value, ts, level Sensor: dew_point | fields: value, unit, type, qc Task: Fetch level from soil_moisture that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006171
train
v2
Sensor network script: Node: uv_index | code: clr | fields: depth, value, reading, lat Sensor: wind_speed | fields: qc, type, unit, lat Task: Get lat from uv_index where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006172
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: reading, depth, type, value Sensor: cloud_cover | fields: reading, unit, lat, level Task: Fetch level from snow_depth where type exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006173
train
v1
Sensor network script: Node: pressure | code: stn | fields: type, unit, lat, qc Sensor: drought_index | fields: ts, reading, depth, value Task: Retrieve level from pressure whose qc is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006174
train
v2
Sensor network script: Node: air_quality | code: mst | fields: type, ts, unit, depth Sensor: uv_index | fields: lat, depth, lon, qc Task: Get lon from air_quality where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006175
train
v3
Sensor network script: Node: visibility | code: stn | fields: ts, type, qc, reading Sensor: uv_index | fields: lat, depth, lon, value Task: Get value from visibility where value exceeds the average reading from uv_index for the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006176
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: lon, type, level, reading Sensor: humidity | fields: reading, level, qc, ts Task: Fetch lon from wind_speed where type exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006177
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, qc, depth, unit Sensor: sunlight | fields: level, lat, depth, value Task: Fetch lon from visibility where ts exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006178
train
v1
Sensor network script: Node: humidity | code: ref | fields: type, value, lat, ts Sensor: wind_speed | fields: unit, ts, value, depth Task: Fetch lon from humidity where ts exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006179
train
v1
Sensor network script: Node: dew_point | code: ref | fields: level, lat, qc, reading Sensor: temperature | fields: reading, qc, unit, depth Task: Fetch value from dew_point where depth exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006180
train
v1
Sensor network script: Node: uv_index | code: prt | fields: depth, unit, qc, type Sensor: turbidity | fields: ts, type, value, lat Task: Get value from uv_index where qc appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006181
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: depth, value, type, ts Sensor: rainfall | fields: lon, lat, unit, type Task: Retrieve lon from cloud_cover whose qc is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006182
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: level, depth, lat, ts Sensor: temperature | fields: reading, type, depth, level Task: Get depth from wind_speed where qc appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006183
train
v1
Sensor network script: Node: dew_point | code: ref | fields: lat, level, reading, lon Sensor: visibility | fields: qc, lat, value, ts Task: Retrieve reading from dew_point whose qc is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006184
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lon, unit, depth, lat Sensor: visibility | fields: level, value, ts, unit Task: Retrieve lat from dew_point with value above the COUNT(depth) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006185
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: lat, type, qc, unit Sensor: cloud_cover | fields: qc, ts, lon, depth Task: Fetch level from snow_depth where value is greater than the total of value in cloud_cover for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006186
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: ts, reading, value, qc Sensor: rainfall | fields: level, ts, depth, qc Task: Retrieve level from soil_moisture that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006187
train
v3
Sensor network script: Node: temperature | code: thr | fields: qc, lon, lat, type Sensor: uv_index | fields: lat, depth, value, type Task: Get lon from temperature where reading exceeds the count of value from uv_index for the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006188
train
v3
Sensor network script: Node: frost | code: mst | fields: unit, level, qc, type Sensor: uv_index | fields: lat, qc, type, reading Task: Get depth from frost where depth exceeds the average reading from uv_index for the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006189
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: value, level, type, ts Sensor: humidity | fields: ts, unit, lat, lon Task: Get lat from cloud_cover where ts appears in humidity readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006190
train
v2
Sensor network script: Node: frost | code: mst | fields: type, depth, ts, lat Sensor: visibility | fields: qc, ts, unit, type Task: Retrieve value from frost that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006191
train
v2
Sensor network script: Node: turbidity | code: hub | fields: type, reading, unit, lat Sensor: visibility | fields: ts, level, reading, unit Task: Fetch lon from turbidity that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006192
train
v2
Sensor network script: Node: turbidity | code: thr | fields: value, lon, depth, type Sensor: visibility | fields: depth, lon, unit, type Task: Fetch value from turbidity that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006193
train
v1
Sensor network script: Node: rainfall | code: mst | fields: reading, ts, level, qc Sensor: dew_point | fields: reading, lat, value, type Task: Retrieve depth from rainfall whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006194
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: level, depth, lon, qc Sensor: visibility | fields: value, level, reading, unit Task: Retrieve reading from wind_speed whose type is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006195
train
v2
Sensor network script: Node: uv_index | code: clr | fields: unit, qc, depth, level Sensor: evaporation | fields: level, type, reading, lon Task: Retrieve reading from uv_index that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006196
train
v1
Sensor network script: Node: rainfall | code: prt | fields: value, unit, type, reading Sensor: uv_index | fields: reading, level, qc, lon Task: Retrieve level from rainfall whose qc is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006197
train
v1
Sensor network script: Node: turbidity | code: thr | fields: value, unit, ts, level Sensor: evaporation | fields: unit, lat, depth, reading Task: Retrieve reading from turbidity whose ts is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006198
train
v1
Sensor network script: Node: visibility | code: ref | fields: value, reading, type, depth Sensor: frost | fields: qc, type, depth, ts Task: Get lat from visibility where depth appears in frost readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006199
train