variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: wind_speed | code: thr | fields: lat, qc, level, lon Sensor: uv_index | fields: type, qc, reading, lat Task: Get lat from wind_speed where depth exceeds the minimum value from uv_index for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061200
train
v3
Sensor network script: Node: air_quality | code: mst | fields: unit, value, depth, lat Sensor: rainfall | fields: unit, level, type, lon Task: Retrieve lon from air_quality with depth above the SUM(value) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "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_061201
train
v3
Sensor network script: Node: evaporation | code: ref | fields: value, depth, unit, ts Sensor: wind_speed | fields: qc, value, ts, unit Task: Fetch reading from evaporation where value is greater than the minimum of reading in wind_speed for matching unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061202
train
v2
Sensor network script: Node: drought_index | code: gst | fields: lat, lon, unit, ts Sensor: soil_moisture | fields: qc, depth, type, level Task: Get depth from drought_index where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061203
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: level, reading, unit, type Sensor: dew_point | fields: value, lon, level, reading Task: Retrieve reading from cloud_cover with value above the SUM(depth) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061204
train
v1
Sensor network script: Node: temperature | code: hub | fields: qc, type, ts, depth Sensor: dew_point | fields: reading, lat, qc, unit Task: Get depth from temperature where type appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061205
train
v3
Sensor network script: Node: evaporation | code: gst | fields: unit, type, depth, reading Sensor: dew_point | fields: qc, lat, level, depth Task: Get depth from evaporation where depth exceeds the total reading from dew_point for the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061206
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: reading, depth, qc, value Sensor: wind_speed | fields: ts, depth, level, lon Task: Get lat from cloud_cover where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061207
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: depth, type, level, value Sensor: lightning | fields: qc, type, depth, lon Task: Get depth from snow_depth where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061208
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: qc, lat, type, depth Sensor: evaporation | fields: level, reading, type, lon Task: Get lon from wind_speed where ts appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061209
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lon, reading, lat, unit Sensor: dew_point | fields: type, lon, reading, lat Task: Get lon from snow_depth where value exceeds the average reading from dew_point for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061210
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, level, reading, type Sensor: evaporation | fields: value, depth, unit, lat Task: Get lat from visibility where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061211
train
v1
Sensor network script: Node: uv_index | code: stn | fields: type, value, lat, ts Sensor: evaporation | fields: reading, level, ts, qc Task: Get lat from uv_index where type appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061212
train
v3
Sensor network script: Node: drought_index | code: clr | fields: qc, lat, level, reading Sensor: turbidity | fields: level, lat, value, depth Task: Get lon from drought_index where depth exceeds the maximum depth from turbidity for the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061213
train
v1
Sensor network script: Node: temperature | code: ref | fields: reading, level, ts, value Sensor: frost | fields: type, reading, qc, lon Task: Fetch level from temperature where qc exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061214
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: value, type, depth, ts Sensor: soil_moisture | fields: value, level, ts, unit Task: Get lat from wind_speed where unit appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061215
train
v1
Sensor network script: Node: sunlight | code: stn | fields: qc, reading, type, value Sensor: rainfall | fields: value, type, ts, level Task: Get reading from sunlight where type appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061216
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: type, value, level, ts Sensor: wind_speed | fields: value, reading, qc, depth Task: Get lat from soil_moisture where reading exceeds the minimum value from wind_speed for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061217
train
v3
Sensor network script: Node: air_quality | code: prt | fields: type, ts, qc, depth Sensor: evaporation | fields: lon, type, reading, level Task: Retrieve reading from air_quality with reading above the COUNT(depth) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061218
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, type, ts, level Sensor: uv_index | fields: lat, reading, type, depth Task: Get reading from frost where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061219
train
v1
Sensor network script: Node: pressure | code: thr | fields: depth, value, lon, lat Sensor: visibility | fields: type, depth, qc, unit Task: Fetch lon from pressure where qc exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061220
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lat, ts, value, unit Sensor: lightning | fields: reading, level, type, lat Task: Get lon from uv_index where value exceeds the maximum reading from lightning for the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061221
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, level, qc, value Sensor: humidity | fields: depth, level, qc, lat Task: Retrieve value from sunlight whose qc is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061222
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: depth, lat, ts, value Sensor: evaporation | fields: value, unit, qc, lon Task: Fetch level from cloud_cover where depth is greater than the total of value in evaporation for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061223
train
v1
Sensor network script: Node: rainfall | code: hub | fields: level, reading, ts, lat Sensor: visibility | fields: lon, ts, value, reading Task: Fetch lat from rainfall where ts exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061224
train
v2
Sensor network script: Node: evaporation | code: stn | fields: level, depth, qc, lat Sensor: uv_index | fields: reading, lon, qc, ts Task: Fetch lon from evaporation that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061225
train
v3
Sensor network script: Node: dew_point | code: prt | fields: type, qc, unit, reading Sensor: visibility | fields: lon, unit, type, depth Task: Get level from dew_point where reading exceeds the total depth from visibility for the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061226
train
v1
Sensor network script: Node: humidity | code: mst | fields: lon, ts, level, qc Sensor: rainfall | fields: lat, ts, qc, lon Task: Get value from humidity where type appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061227
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, value, lon, reading Sensor: soil_moisture | fields: qc, lat, unit, depth Task: Retrieve lon from snow_depth that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061228
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lon, reading, type, value Sensor: soil_moisture | fields: qc, unit, value, ts Task: Retrieve lon from air_quality whose ts is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061229
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: unit, reading, lat, qc Sensor: visibility | fields: value, type, lon, qc Task: Retrieve depth from wind_speed that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061230
train
v1
Sensor network script: Node: humidity | code: ref | fields: type, qc, value, reading Sensor: wind_speed | fields: level, value, lat, reading Task: Get lon from humidity where unit appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061231
train
v1
Sensor network script: Node: turbidity | code: prt | fields: value, type, reading, ts Sensor: lightning | fields: value, depth, type, unit Task: Retrieve lat from turbidity whose qc is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061232
train
v2
Sensor network script: Node: visibility | code: thr | fields: reading, unit, depth, lon Sensor: turbidity | fields: unit, level, qc, ts Task: Get level from visibility where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061233
train
v1
Sensor network script: Node: lightning | code: clr | fields: value, depth, lon, level Sensor: humidity | fields: level, ts, reading, type Task: Get level from lightning where unit appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061234
train
v2
Sensor network script: Node: rainfall | code: clr | fields: value, lat, qc, lon Sensor: temperature | fields: lat, qc, lon, type Task: Fetch level from rainfall that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061235
train
v3
Sensor network script: Node: lightning | code: hub | fields: lon, level, unit, qc Sensor: pressure | fields: depth, lat, qc, reading Task: Retrieve value from lightning with value above the SUM(value) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061236
train
v3
Sensor network script: Node: drought_index | code: ref | fields: level, qc, value, ts Sensor: dew_point | fields: level, ts, value, lat Task: Retrieve level from drought_index with depth above the SUM(value) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "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_061237
train
v2
Sensor network script: Node: temperature | code: stn | fields: type, unit, value, lat Sensor: turbidity | fields: ts, value, unit, qc Task: Retrieve value from temperature that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061238
train
v3
Sensor network script: Node: pressure | code: mst | fields: unit, qc, lon, value Sensor: temperature | fields: lon, qc, depth, lat Task: Get lon from pressure where value exceeds the total value from temperature for the same qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061239
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lon, depth, qc, lat Sensor: frost | fields: ts, reading, type, depth Task: Retrieve lon from dew_point with value above the MAX(reading) of frost readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", 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": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061240
train
v3
Sensor network script: Node: visibility | code: mst | fields: value, depth, type, ts Sensor: rainfall | fields: ts, unit, value, type Task: Get value from visibility where value exceeds the total value from rainfall for the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061241
train
v3
Sensor network script: Node: lightning | code: ref | fields: type, lon, qc, lat Sensor: temperature | fields: qc, lon, value, reading Task: Fetch depth from lightning where depth is greater than the count of of depth in temperature for matching depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061242
train
v3
Sensor network script: Node: sunlight | code: stn | fields: lat, value, reading, ts Sensor: temperature | fields: value, unit, qc, depth Task: Fetch lon from sunlight where reading is greater than the average of depth in temperature for matching depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061243
train
v1
Sensor network script: Node: rainfall | code: stn | fields: type, value, lat, lon Sensor: drought_index | fields: type, lon, depth, unit Task: Retrieve value from rainfall whose depth is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061244
train
v1
Sensor network script: Node: uv_index | code: hub | fields: lat, qc, reading, level Sensor: wind_speed | fields: qc, level, value, lat Task: Fetch value from uv_index where depth exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061245
train
v2
Sensor network script: Node: lightning | code: clr | fields: value, qc, lat, ts Sensor: pressure | fields: depth, value, level, lon Task: Get reading from lightning where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061246
train
v1
Sensor network script: Node: drought_index | code: thr | fields: level, type, value, ts Sensor: humidity | fields: ts, type, depth, value Task: Fetch lat from drought_index where type exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061247
train
v3
Sensor network script: Node: uv_index | code: stn | fields: qc, lat, depth, reading Sensor: soil_moisture | fields: value, level, reading, lat Task: Get depth from uv_index where reading exceeds the minimum value from soil_moisture for the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061248
train
v2
Sensor network script: Node: temperature | code: stn | fields: type, lon, level, qc Sensor: rainfall | fields: ts, unit, depth, lon Task: Fetch reading from temperature that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061249
train
v1
Sensor network script: Node: pressure | code: thr | fields: ts, value, unit, level Sensor: sunlight | fields: value, depth, qc, lon Task: Retrieve depth from pressure whose unit is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061250
train
v2
Sensor network script: Node: drought_index | code: stn | fields: value, type, lat, reading Sensor: wind_speed | fields: depth, lat, value, ts Task: Retrieve reading from drought_index that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061251
train
v3
Sensor network script: Node: rainfall | code: mst | fields: lat, type, qc, depth Sensor: humidity | fields: qc, depth, lon, ts Task: Get value from rainfall where depth exceeds the average value from humidity for the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061252
train
v2
Sensor network script: Node: air_quality | code: mst | fields: lat, ts, lon, reading Sensor: wind_speed | fields: lat, depth, lon, level Task: Fetch reading from air_quality that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061253
train
v1
Sensor network script: Node: frost | code: stn | fields: type, unit, reading, qc Sensor: drought_index | fields: ts, value, type, level Task: Get lon from frost where type appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061254
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lat, lon, value, unit Sensor: frost | fields: depth, lat, type, unit Task: Get value from cloud_cover where ts appears in frost readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061255
train
v3
Sensor network script: Node: humidity | code: prt | fields: type, unit, lat, qc Sensor: cloud_cover | fields: ts, unit, lon, qc Task: Fetch lon from humidity where value is greater than the total of value in cloud_cover for matching type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061256
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: value, unit, lat, qc Sensor: turbidity | fields: type, lon, value, depth Task: Retrieve lon from cloud_cover with depth above the AVG(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061257
train
v3
Sensor network script: Node: air_quality | code: gst | fields: value, qc, lat, unit Sensor: rainfall | fields: level, lon, type, depth Task: Fetch lon from air_quality where depth is greater than the count of of value in rainfall for matching type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061258
train
v3
Sensor network script: Node: turbidity | code: prt | fields: ts, lat, lon, type Sensor: dew_point | fields: value, unit, ts, reading Task: Get depth from turbidity where value exceeds the total depth from dew_point for the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061259
train
v2
Sensor network script: Node: sunlight | code: clr | fields: value, lon, depth, type Sensor: cloud_cover | fields: ts, level, value, reading Task: Retrieve depth from sunlight that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061260
train
v1
Sensor network script: Node: visibility | code: hub | fields: level, lon, unit, type Sensor: drought_index | fields: ts, lat, level, lon Task: Retrieve lat from visibility whose qc is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061261
train
v3
Sensor network script: Node: humidity | code: clr | fields: level, lon, qc, ts Sensor: turbidity | fields: value, type, level, reading Task: Fetch depth from humidity where value is greater than the minimum of reading in turbidity for matching qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061262
train
v2
Sensor network script: Node: pressure | code: thr | fields: level, reading, lon, depth Sensor: drought_index | fields: value, unit, lon, lat Task: Fetch lat from pressure that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061263
train
v1
Sensor network script: Node: lightning | code: hub | fields: lon, ts, lat, qc Sensor: pressure | fields: lon, ts, type, level Task: Retrieve depth from lightning whose ts is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061264
train
v2
Sensor network script: Node: uv_index | code: clr | fields: qc, unit, ts, lat Sensor: air_quality | fields: ts, unit, reading, depth Task: Get lat from uv_index where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061265
train
v2
Sensor network script: Node: frost | code: clr | fields: qc, ts, reading, type Sensor: air_quality | fields: value, reading, lat, type Task: Fetch lon from frost that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061266
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: lat, unit, depth, level Sensor: lightning | fields: type, unit, reading, qc Task: Retrieve level from cloud_cover with reading above the AVG(value) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061267
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, lon, reading, depth Sensor: sunlight | fields: qc, type, lat, depth Task: Fetch value from humidity where depth is greater than the count of of value in sunlight for matching unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061268
train
v2
Sensor network script: Node: dew_point | code: clr | fields: lon, reading, qc, depth Sensor: rainfall | fields: type, unit, lon, lat Task: Fetch lon from dew_point that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061269
train
v2
Sensor network script: Node: evaporation | code: thr | fields: qc, type, reading, unit Sensor: cloud_cover | fields: lat, value, depth, reading Task: Retrieve lon from evaporation that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061270
train
v3
Sensor network script: Node: lightning | code: thr | fields: lat, qc, depth, value Sensor: cloud_cover | fields: qc, unit, level, depth Task: Get level from lightning where reading exceeds the average value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061271
train
v2
Sensor network script: Node: air_quality | code: thr | fields: qc, depth, ts, lat Sensor: rainfall | fields: depth, qc, lon, type Task: Retrieve depth from air_quality that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061272
train
v3
Sensor network script: Node: uv_index | code: gst | fields: value, unit, depth, lon Sensor: sunlight | fields: lon, ts, depth, level Task: Fetch value from uv_index where value is greater than the maximum of reading in sunlight for matching ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061273
train
v3
Sensor network script: Node: frost | code: ref | fields: reading, type, depth, level Sensor: rainfall | fields: value, lon, qc, type Task: Fetch value from frost where value is greater than the minimum of depth in rainfall for matching depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061274
train
v2
Sensor network script: Node: drought_index | code: clr | fields: ts, depth, lon, value Sensor: pressure | fields: level, lon, type, qc Task: Fetch lon from drought_index that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061275
train
v2
Sensor network script: Node: temperature | code: stn | fields: type, unit, value, level Sensor: visibility | fields: lon, ts, reading, lat Task: Retrieve lon from temperature that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061276
train
v1
Sensor network script: Node: frost | code: ref | fields: value, type, lat, lon Sensor: evaporation | fields: level, lat, type, ts Task: Fetch depth from frost where depth exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061277
train
v2
Sensor network script: Node: humidity | code: hub | fields: lat, depth, unit, value Sensor: sunlight | fields: ts, unit, reading, depth Task: Fetch reading from humidity that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061278
train
v2
Sensor network script: Node: evaporation | code: thr | fields: ts, depth, type, reading Sensor: snow_depth | fields: value, unit, type, lon Task: Retrieve level from evaporation that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061279
train
v2
Sensor network script: Node: frost | code: hub | fields: value, depth, lon, lat Sensor: sunlight | fields: type, ts, reading, value Task: Retrieve lon from frost that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061280
train
v3
Sensor network script: Node: turbidity | code: ref | fields: depth, unit, value, lat Sensor: visibility | fields: ts, reading, depth, level Task: Get depth from turbidity where depth exceeds the minimum value from visibility for the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061281
train
v3
Sensor network script: Node: rainfall | code: clr | fields: ts, depth, qc, type Sensor: evaporation | fields: ts, value, unit, level Task: Retrieve reading from rainfall with reading above the COUNT(reading) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061282
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, unit, level, type Sensor: humidity | fields: value, type, ts, unit Task: Fetch lon from uv_index where value is greater than the minimum of depth in humidity for matching ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061283
train
v1
Sensor network script: Node: rainfall | code: stn | fields: value, unit, lon, depth Sensor: air_quality | fields: unit, ts, value, lon Task: Fetch lat from rainfall where unit exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061284
train
v3
Sensor network script: Node: pressure | code: ref | fields: lon, lat, type, value Sensor: soil_moisture | fields: type, lon, qc, ts Task: Retrieve lat from pressure with value above the AVG(reading) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061285
train
v2
Sensor network script: Node: rainfall | code: thr | fields: type, qc, reading, lat Sensor: soil_moisture | fields: level, value, lon, unit Task: Fetch level from rainfall that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061286
train
v3
Sensor network script: Node: uv_index | code: hub | fields: value, ts, depth, level Sensor: pressure | fields: ts, reading, type, depth Task: Retrieve lon from uv_index with reading above the SUM(reading) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061287
train
v1
Sensor network script: Node: dew_point | code: clr | fields: ts, depth, level, type Sensor: air_quality | fields: lat, unit, level, ts Task: Fetch value from dew_point where ts exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061288
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: ts, lon, lat, value Sensor: pressure | fields: reading, level, value, unit Task: Retrieve level from snow_depth with depth above the MIN(reading) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061289
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: depth, value, reading, ts Sensor: lightning | fields: type, level, lon, depth Task: Get lon from soil_moisture where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061290
train
v3
Sensor network script: Node: lightning | code: ref | fields: level, ts, type, qc Sensor: frost | fields: lat, ts, lon, depth Task: Fetch value from lightning where value is greater than the total of value in frost for matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061291
train
v1
Sensor network script: Node: rainfall | code: hub | fields: reading, ts, level, qc Sensor: drought_index | fields: qc, ts, lat, reading Task: Get lat from rainfall where ts appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061292
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: lon, ts, unit, reading Sensor: soil_moisture | fields: reading, unit, ts, value Task: Get lon from cloud_cover where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061293
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lon, level, depth, unit Sensor: drought_index | fields: reading, level, unit, lat Task: Get lon from dew_point where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061294
train
v3
Sensor network script: Node: evaporation | code: prt | fields: unit, reading, type, lon Sensor: snow_depth | fields: value, reading, qc, ts Task: Fetch depth from evaporation where depth is greater than the count of of depth in snow_depth for matching unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061295
train
v1
Sensor network script: Node: sunlight | code: hub | fields: ts, reading, lon, lat Sensor: drought_index | fields: value, lon, level, lat Task: Fetch value from sunlight where unit exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061296
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lat, qc, depth, level Sensor: lightning | fields: depth, qc, lat, value Task: Fetch reading from rainfall where depth is greater than the maximum of reading in lightning for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061297
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: depth, lon, unit, qc Sensor: frost | fields: unit, lat, ts, depth Task: Get level from snow_depth where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061298
train
v1
Sensor network script: Node: uv_index | code: thr | fields: qc, type, level, lon Sensor: snow_depth | fields: depth, value, level, lat Task: Get reading from uv_index where type appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061299
train