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: evaporation | code: ref | fields: unit, lat, depth, type Sensor: wind_speed | fields: ts, unit, lat, lon Task: Get value from evaporation where depth appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068900
train
v1
Sensor network script: Node: humidity | code: thr | fields: lat, reading, level, qc Sensor: uv_index | fields: reading, level, value, depth Task: Get level from humidity where type appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068901
train
v1
Sensor network script: Node: rainfall | code: ref | fields: lat, qc, reading, level Sensor: visibility | fields: qc, lat, unit, type Task: Fetch reading from rainfall where unit exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068902
train
v3
Sensor network script: Node: turbidity | code: prt | fields: depth, unit, reading, qc Sensor: dew_point | fields: level, unit, reading, depth Task: Fetch depth from turbidity where depth is greater than the maximum of value in dew_point for matching type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068903
train
v1
Sensor network script: Node: humidity | code: clr | fields: unit, level, qc, reading Sensor: air_quality | fields: unit, type, level, ts Task: Retrieve lon from humidity whose depth is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068904
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, reading, ts, value Sensor: dew_point | fields: lon, level, lat, depth Task: Fetch depth from sunlight where qc exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068905
train
v3
Sensor network script: Node: temperature | code: gst | fields: unit, value, lon, qc Sensor: lightning | fields: lon, ts, lat, reading Task: Get lat from temperature where reading exceeds the total value from lightning for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068906
train
v3
Sensor network script: Node: rainfall | code: thr | fields: qc, level, unit, ts Sensor: visibility | fields: type, level, unit, depth Task: Fetch reading from rainfall where value is greater than the minimum of reading in visibility for matching depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068907
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, depth, value, reading Sensor: rainfall | fields: ts, reading, lon, lat Task: Get level from air_quality where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068908
train
v2
Sensor network script: Node: visibility | code: prt | fields: qc, lon, depth, value Sensor: cloud_cover | fields: depth, qc, unit, lon Task: Fetch lon from visibility that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068909
train
v1
Sensor network script: Node: humidity | code: stn | fields: lat, qc, level, ts Sensor: rainfall | fields: ts, type, depth, unit Task: Fetch lon from humidity where type exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068910
train
v1
Sensor network script: Node: sunlight | code: prt | fields: lon, unit, depth, lat Sensor: uv_index | fields: level, qc, lon, depth Task: Retrieve lon from sunlight whose type is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068911
train
v2
Sensor network script: Node: rainfall | code: hub | fields: unit, reading, lon, level Sensor: cloud_cover | fields: ts, lon, qc, type Task: Fetch level from rainfall that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068912
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: depth, type, lon, unit Sensor: wind_speed | fields: value, unit, reading, level Task: Retrieve lon from cloud_cover whose type is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068913
train
v2
Sensor network script: Node: dew_point | code: gst | fields: unit, type, lat, level Sensor: rainfall | fields: unit, lat, level, lon Task: Retrieve reading from dew_point that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068914
train
v2
Sensor network script: Node: pressure | code: clr | fields: qc, reading, depth, level Sensor: frost | fields: ts, reading, value, depth Task: Fetch depth from pressure that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068915
train
v1
Sensor network script: Node: humidity | code: mst | fields: lon, qc, unit, ts Sensor: snow_depth | fields: lat, unit, level, ts Task: Get depth from humidity where qc appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068916
train
v1
Sensor network script: Node: drought_index | code: prt | fields: reading, depth, lat, lon Sensor: evaporation | fields: depth, unit, level, ts Task: Fetch value from drought_index where type exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068917
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: reading, type, ts, value Sensor: cloud_cover | fields: ts, qc, lon, reading Task: Get level from soil_moisture where qc appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068918
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: ts, level, qc, lat Sensor: visibility | fields: lat, type, unit, lon Task: Get reading from soil_moisture where value exceeds the minimum value from visibility for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068919
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: level, lon, depth, qc Sensor: sunlight | fields: type, lon, level, value Task: Fetch depth from snow_depth where unit exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068920
train
v2
Sensor network script: Node: rainfall | code: ref | fields: ts, level, unit, lat Sensor: air_quality | fields: value, type, ts, qc Task: Retrieve value from rainfall that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068921
train
v2
Sensor network script: Node: humidity | code: hub | fields: value, lon, type, depth Sensor: drought_index | fields: unit, qc, level, type Task: Fetch lat from humidity that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068922
train
v1
Sensor network script: Node: lightning | code: stn | fields: reading, type, unit, lon Sensor: evaporation | fields: level, value, type, unit Task: Get lon from lightning where depth appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068923
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: value, type, lon, lat Sensor: dew_point | fields: unit, ts, lat, type Task: Fetch value from cloud_cover that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068924
train
v3
Sensor network script: Node: lightning | code: ref | fields: qc, type, reading, value Sensor: snow_depth | fields: unit, level, reading, lon Task: Retrieve level from lightning with value above the MAX(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068925
train
v1
Sensor network script: Node: humidity | code: gst | fields: unit, qc, ts, value Sensor: rainfall | fields: reading, qc, level, lat Task: Retrieve level from humidity whose qc is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068926
train
v1
Sensor network script: Node: frost | code: thr | fields: unit, lon, qc, level Sensor: pressure | fields: lon, reading, unit, lat Task: Fetch reading from frost where unit exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068927
train
v3
Sensor network script: Node: humidity | code: hub | fields: type, value, ts, lat Sensor: cloud_cover | fields: lat, qc, value, reading Task: Fetch value from humidity where value is greater than the minimum of reading in cloud_cover for matching depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068928
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: reading, ts, qc, type Sensor: snow_depth | fields: lat, lon, ts, value Task: Get depth from wind_speed where qc appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068929
train
v2
Sensor network script: Node: pressure | code: stn | fields: unit, lat, reading, type Sensor: evaporation | fields: lon, lat, type, level Task: Fetch level from pressure that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068930
train
v1
Sensor network script: Node: turbidity | code: ref | fields: depth, lon, unit, reading Sensor: dew_point | fields: lon, depth, reading, type Task: Get depth from turbidity where ts appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068931
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: lat, value, qc, ts Sensor: rainfall | fields: unit, type, reading, lat Task: Fetch level from soil_moisture where depth is greater than the count of of reading in rainfall for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068932
train
v2
Sensor network script: Node: visibility | code: thr | fields: ts, unit, depth, value Sensor: dew_point | fields: unit, type, qc, level Task: Retrieve value from visibility that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068933
train
v3
Sensor network script: Node: temperature | code: mst | fields: value, reading, lat, depth Sensor: cloud_cover | fields: lon, ts, level, lat Task: Fetch reading from temperature where reading is greater than the count of of value in cloud_cover for matching depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068934
train
v3
Sensor network script: Node: turbidity | code: gst | fields: depth, lat, reading, qc Sensor: pressure | fields: ts, lat, type, depth Task: Retrieve depth from turbidity with value above the MIN(reading) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068935
train
v1
Sensor network script: Node: visibility | code: hub | fields: level, ts, unit, depth Sensor: rainfall | fields: value, ts, level, qc Task: Fetch lon from visibility where qc exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068936
train
v2
Sensor network script: Node: dew_point | code: stn | fields: qc, lat, depth, lon Sensor: evaporation | fields: level, ts, lon, lat Task: Fetch level from dew_point that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068937
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: depth, unit, lon, type Sensor: evaporation | fields: qc, value, level, lat Task: Fetch lat from cloud_cover that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "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_068938
train
v2
Sensor network script: Node: dew_point | code: gst | fields: level, lat, depth, type Sensor: rainfall | fields: ts, lon, value, reading Task: Fetch value from dew_point that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068939
train
v1
Sensor network script: Node: turbidity | code: thr | fields: type, qc, reading, value Sensor: snow_depth | fields: lon, level, lat, value Task: Retrieve depth from turbidity whose depth is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068940
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: depth, type, lat, level Sensor: lightning | fields: lon, qc, type, level Task: Get depth from snow_depth where ts appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068941
train
v1
Sensor network script: Node: visibility | code: ref | fields: lon, unit, value, lat Sensor: evaporation | fields: unit, qc, reading, lat Task: Fetch value from visibility where depth exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068942
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: lat, lon, level, value Sensor: air_quality | fields: ts, reading, lon, level Task: Fetch lat from snow_depth that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068943
train
v1
Sensor network script: Node: turbidity | code: thr | fields: value, lat, qc, type Sensor: evaporation | fields: lon, reading, qc, level Task: Get lon from turbidity where qc appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068944
train
v1
Sensor network script: Node: dew_point | code: gst | fields: qc, ts, depth, level Sensor: pressure | fields: qc, unit, lon, reading Task: Get depth from dew_point where ts appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068945
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: depth, type, qc, reading Sensor: wind_speed | fields: lon, lat, unit, depth Task: Fetch lat from cloud_cover where type exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068946
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: lon, level, qc, reading Sensor: soil_moisture | fields: depth, ts, qc, reading Task: Retrieve lon from wind_speed that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068947
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: lon, qc, depth, reading Sensor: turbidity | fields: unit, qc, type, reading Task: Fetch reading from snow_depth where depth is greater than the count of of value in turbidity for matching type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068948
train
v1
Sensor network script: Node: sunlight | code: thr | fields: level, value, qc, ts Sensor: frost | fields: type, unit, reading, lon Task: Fetch lon from sunlight where unit exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068949
train
v1
Sensor network script: Node: pressure | code: thr | fields: level, lon, ts, lat Sensor: wind_speed | fields: type, qc, level, lat Task: Get depth from pressure where depth appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068950
train
v1
Sensor network script: Node: air_quality | code: ref | fields: value, lat, level, ts Sensor: temperature | fields: depth, unit, reading, level Task: Retrieve level from air_quality whose ts is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068951
train
v2
Sensor network script: Node: air_quality | code: prt | fields: lat, value, depth, ts Sensor: frost | fields: unit, reading, lat, lon Task: Fetch level from air_quality that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068952
train
v2
Sensor network script: Node: temperature | code: thr | fields: level, type, unit, qc Sensor: soil_moisture | fields: type, value, lon, reading Task: Retrieve reading from temperature that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068953
train
v1
Sensor network script: Node: sunlight | code: ref | fields: level, ts, lat, type Sensor: humidity | fields: lat, ts, value, depth Task: Fetch value from sunlight where depth exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068954
train
v2
Sensor network script: Node: air_quality | code: ref | fields: value, ts, lat, reading Sensor: sunlight | fields: lat, level, type, qc Task: Fetch lon from air_quality that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068955
train
v2
Sensor network script: Node: rainfall | code: stn | fields: unit, ts, level, lat Sensor: drought_index | fields: lon, reading, qc, lat Task: Get lat from rainfall where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068956
train
v2
Sensor network script: Node: air_quality | code: stn | fields: value, depth, level, lon Sensor: sunlight | fields: type, depth, lat, level Task: Retrieve lat from air_quality that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068957
train
v3
Sensor network script: Node: temperature | code: hub | fields: qc, type, value, ts Sensor: humidity | fields: qc, level, ts, reading Task: Get value from temperature where depth exceeds the count of depth from humidity for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068958
train
v2
Sensor network script: Node: evaporation | code: gst | fields: lon, type, lat, ts Sensor: snow_depth | fields: ts, value, lat, reading Task: Get lon from evaporation where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068959
train
v3
Sensor network script: Node: visibility | code: hub | fields: lon, reading, type, unit Sensor: sunlight | fields: unit, reading, lon, ts Task: Fetch depth from visibility where reading is greater than the count of of depth in sunlight for matching type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068960
train
v3
Sensor network script: Node: lightning | code: stn | fields: lon, unit, level, value Sensor: sunlight | fields: reading, ts, lat, level Task: Retrieve reading from lightning with reading above the MIN(reading) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068961
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lat, qc, depth, lon Sensor: wind_speed | fields: lat, unit, level, qc Task: Fetch value from snow_depth where depth is greater than the maximum of value in wind_speed for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068962
train
v2
Sensor network script: Node: uv_index | code: clr | fields: unit, lat, type, reading Sensor: drought_index | fields: level, value, unit, type Task: Retrieve value from uv_index that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068963
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: ts, lon, lat, value Sensor: temperature | fields: value, ts, depth, lon Task: Fetch value from cloud_cover that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068964
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: lon, reading, depth, ts Sensor: rainfall | fields: qc, value, lon, type Task: Retrieve depth from snow_depth with value above the COUNT(value) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068965
train
v3
Sensor network script: Node: lightning | code: hub | fields: lon, lat, level, depth Sensor: drought_index | fields: unit, qc, lat, type Task: Get depth from lightning where depth exceeds the total value from drought_index for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068966
train
v1
Sensor network script: Node: evaporation | code: clr | fields: reading, unit, ts, depth Sensor: snow_depth | fields: reading, ts, lon, type Task: Get reading from evaporation where depth appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068967
train
v1
Sensor network script: Node: lightning | code: prt | fields: qc, depth, unit, value Sensor: frost | fields: reading, level, qc, lat Task: Retrieve level from lightning whose depth is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068968
train
v3
Sensor network script: Node: dew_point | code: gst | fields: depth, lon, qc, level Sensor: snow_depth | fields: value, ts, lat, unit Task: Get reading from dew_point where reading exceeds the maximum value from snow_depth for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068969
train
v1
Sensor network script: Node: air_quality | code: mst | fields: qc, depth, level, reading Sensor: wind_speed | fields: reading, depth, level, type Task: Fetch level from air_quality where ts exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068970
train
v3
Sensor network script: Node: sunlight | code: hub | fields: type, value, level, reading Sensor: temperature | fields: type, lon, reading, ts Task: Fetch reading from sunlight where reading is greater than the average of depth in temperature for matching type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068971
train
v2
Sensor network script: Node: rainfall | code: gst | fields: value, depth, qc, unit Sensor: evaporation | fields: value, reading, lon, type Task: Fetch level from rainfall that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068972
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: level, depth, reading, qc Sensor: dew_point | fields: reading, lon, value, level Task: Fetch lat from wind_speed where unit exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068973
train
v3
Sensor network script: Node: air_quality | code: prt | fields: lon, lat, level, depth Sensor: wind_speed | fields: lat, unit, level, ts Task: Get lon from air_quality where reading exceeds the count of depth from wind_speed for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068974
train
v1
Sensor network script: Node: evaporation | code: mst | fields: unit, level, lon, depth Sensor: soil_moisture | fields: reading, type, level, ts Task: Fetch lat from evaporation where unit exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068975
train
v1
Sensor network script: Node: drought_index | code: mst | fields: type, qc, level, lon Sensor: rainfall | fields: ts, lon, reading, lat Task: Get value from drought_index where depth appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068976
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: type, ts, value, lon Sensor: wind_speed | fields: reading, type, unit, level Task: Retrieve depth from soil_moisture with value above the AVG(reading) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068977
train
v2
Sensor network script: Node: drought_index | code: ref | fields: type, lon, reading, ts Sensor: snow_depth | fields: reading, value, level, depth Task: Retrieve value from drought_index that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068978
train
v2
Sensor network script: Node: dew_point | code: stn | fields: type, lon, value, ts Sensor: temperature | fields: type, reading, ts, lat Task: Retrieve depth from dew_point that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068979
train
v2
Sensor network script: Node: lightning | code: prt | fields: unit, depth, value, type Sensor: sunlight | fields: unit, value, ts, level Task: Retrieve value from lightning that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068980
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lon, qc, level, type Sensor: sunlight | fields: type, value, reading, lon Task: Get value from evaporation where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068981
train
v3
Sensor network script: Node: uv_index | code: mst | fields: depth, reading, lon, qc Sensor: frost | fields: qc, lat, lon, level Task: Get value from uv_index where value exceeds the count of value from frost for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068982
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: reading, lat, ts, unit Sensor: soil_moisture | fields: qc, unit, lat, level Task: Get lon from snow_depth where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068983
train
v1
Sensor network script: Node: temperature | code: hub | fields: qc, ts, lon, lat Sensor: lightning | fields: depth, lon, level, ts Task: Fetch reading from temperature where depth exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068984
train
v1
Sensor network script: Node: evaporation | code: prt | fields: depth, qc, lat, lon Sensor: visibility | fields: level, qc, depth, lon Task: Retrieve reading from evaporation whose unit is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068985
train
v2
Sensor network script: Node: evaporation | code: ref | fields: type, value, lon, lat Sensor: temperature | fields: lon, lat, reading, level Task: Retrieve level from evaporation that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068986
train
v3
Sensor network script: Node: turbidity | code: stn | fields: level, type, qc, lon Sensor: rainfall | fields: level, lat, ts, depth Task: Retrieve reading from turbidity with reading above the COUNT(depth) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068987
train
v2
Sensor network script: Node: turbidity | code: stn | fields: value, unit, ts, lat Sensor: snow_depth | fields: unit, level, qc, lat Task: Get lon from turbidity where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068988
train
v3
Sensor network script: Node: drought_index | code: ref | fields: ts, type, level, qc Sensor: temperature | fields: ts, level, qc, lat Task: Get depth from drought_index where depth exceeds the count of value from temperature for the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068989
train
v2
Sensor network script: Node: sunlight | code: hub | fields: unit, level, value, qc Sensor: visibility | fields: depth, unit, ts, qc Task: Get level from sunlight where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068990
train
v3
Sensor network script: Node: drought_index | code: thr | fields: depth, type, level, reading Sensor: humidity | fields: value, qc, ts, depth Task: Get level from drought_index where value exceeds the total reading from humidity for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068991
train
v3
Sensor network script: Node: lightning | code: mst | fields: lon, value, unit, qc Sensor: turbidity | fields: lat, lon, ts, qc Task: Get value from lightning where depth exceeds the count of value from turbidity for the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068992
train
v2
Sensor network script: Node: rainfall | code: mst | fields: type, unit, lat, level Sensor: sunlight | fields: value, level, type, unit Task: Get lat from rainfall where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068993
train
v3
Sensor network script: Node: pressure | code: gst | fields: lat, value, ts, type Sensor: visibility | fields: lat, unit, ts, qc Task: Get value from pressure where depth exceeds the average depth from visibility for the same unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068994
train
v2
Sensor network script: Node: rainfall | code: gst | fields: reading, lat, level, ts Sensor: pressure | fields: lat, depth, type, ts Task: Get value from rainfall where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068995
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: unit, lon, level, lat Sensor: visibility | fields: value, unit, lon, qc Task: Retrieve lon from snow_depth that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068996
train
v3
Sensor network script: Node: humidity | code: hub | fields: reading, depth, type, unit Sensor: temperature | fields: unit, lon, depth, reading Task: Retrieve value from humidity with reading above the SUM(reading) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068997
train
v1
Sensor network script: Node: lightning | code: prt | fields: depth, type, value, reading Sensor: pressure | fields: value, lat, lon, depth Task: Retrieve reading from lightning whose qc is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068998
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, value, reading, lon Sensor: temperature | fields: reading, depth, lon, type Task: Retrieve lat from wind_speed that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068999
train