variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: evaporation | code: prt | fields: lon, reading, unit, type Sensor: temperature | fields: reading, unit, type, qc Task: Fetch value from evaporation that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011300
train
v2
Sensor network script: Node: humidity | code: thr | fields: type, qc, reading, unit Sensor: frost | fields: reading, qc, depth, level Task: Fetch value from humidity that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011301
train
v2
Sensor network script: Node: lightning | code: hub | fields: reading, value, level, unit Sensor: frost | fields: lon, depth, level, lat Task: Get value from lightning where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011302
train
v2
Sensor network script: Node: air_quality | code: prt | fields: type, lat, ts, level Sensor: sunlight | fields: reading, lat, unit, lon Task: Get level from air_quality where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011303
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lon, value, unit, reading Sensor: dew_point | fields: level, lon, qc, reading Task: Retrieve depth from uv_index whose qc is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011304
train
v3
Sensor network script: Node: air_quality | code: hub | fields: reading, lat, level, value Sensor: dew_point | fields: depth, type, value, lon Task: Get lat from air_quality where value exceeds the maximum value from dew_point for the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011305
train
v1
Sensor network script: Node: turbidity | code: mst | fields: reading, type, ts, level Sensor: rainfall | fields: depth, value, reading, qc Task: Retrieve value from turbidity whose unit is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011306
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lat, unit, lon, reading Sensor: turbidity | fields: lat, type, lon, level Task: Fetch lat from evaporation where qc exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011307
train
v1
Sensor network script: Node: humidity | code: prt | fields: unit, lat, type, lon Sensor: pressure | fields: type, qc, value, lon Task: Fetch lat from humidity where unit exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011308
train
v2
Sensor network script: Node: lightning | code: gst | fields: qc, ts, level, unit Sensor: sunlight | fields: lat, ts, unit, qc Task: Get level from lightning where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011309
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lat, reading, unit, qc Sensor: lightning | fields: reading, type, lon, lat Task: Retrieve reading from uv_index with depth above the MIN(reading) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011310
train
v1
Sensor network script: Node: uv_index | code: stn | fields: lat, unit, lon, reading Sensor: cloud_cover | fields: reading, depth, type, unit Task: Fetch value from uv_index where depth exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011311
train
v1
Sensor network script: Node: visibility | code: prt | fields: lat, unit, ts, qc Sensor: sunlight | fields: value, unit, qc, lat Task: Fetch depth from visibility where qc exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011312
train
v3
Sensor network script: Node: drought_index | code: mst | fields: value, qc, reading, level Sensor: uv_index | fields: level, qc, value, lon Task: Fetch value from drought_index where value is greater than the maximum of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011313
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: reading, qc, lat, unit Sensor: rainfall | fields: level, type, unit, depth Task: Fetch lat from snow_depth that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011314
train
v1
Sensor network script: Node: lightning | code: clr | fields: depth, ts, level, lon Sensor: snow_depth | fields: unit, level, lat, reading Task: Retrieve level from lightning whose type is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011315
train
v3
Sensor network script: Node: sunlight | code: gst | fields: lat, unit, lon, ts Sensor: pressure | fields: reading, depth, type, ts Task: Get lon from sunlight where depth exceeds the minimum reading from pressure for the same unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011316
train
v1
Sensor network script: Node: sunlight | code: stn | fields: qc, value, lon, reading Sensor: rainfall | fields: level, ts, type, reading Task: Retrieve lat from sunlight whose qc is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011317
train
v2
Sensor network script: Node: drought_index | code: gst | fields: level, reading, value, type Sensor: cloud_cover | fields: unit, value, qc, ts Task: Get depth from drought_index where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011318
train
v2
Sensor network script: Node: visibility | code: gst | fields: ts, lat, depth, value Sensor: temperature | fields: ts, value, qc, level Task: Retrieve lat from visibility that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011319
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: depth, lat, level, unit Sensor: lightning | fields: lon, depth, reading, type Task: Fetch reading from snow_depth that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011320
train
v3
Sensor network script: Node: dew_point | code: hub | fields: reading, ts, qc, lon Sensor: drought_index | fields: qc, level, value, lat Task: Fetch lon from dew_point where value is greater than the total of reading in drought_index for matching qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011321
train
v3
Sensor network script: Node: frost | code: mst | fields: lat, unit, lon, reading Sensor: air_quality | fields: qc, lon, reading, depth Task: Retrieve lat from frost with reading above the MIN(value) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011322
train
v1
Sensor network script: Node: evaporation | code: mst | fields: ts, lat, depth, qc Sensor: snow_depth | fields: lon, qc, reading, ts Task: Get value from evaporation where depth appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011323
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: depth, unit, value, type Sensor: evaporation | fields: value, type, reading, unit Task: Fetch lat from soil_moisture that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011324
train
v2
Sensor network script: Node: pressure | code: mst | fields: lat, value, depth, ts Sensor: wind_speed | fields: type, level, lon, lat Task: Get reading from pressure where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011325
train
v2
Sensor network script: Node: turbidity | code: prt | fields: qc, depth, lat, unit Sensor: soil_moisture | fields: lon, type, ts, depth Task: Retrieve value from turbidity that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011326
train
v1
Sensor network script: Node: rainfall | code: ref | fields: ts, value, lat, unit Sensor: soil_moisture | fields: value, level, qc, lat Task: Retrieve value from rainfall whose ts is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011327
train
v2
Sensor network script: Node: lightning | code: ref | fields: level, lon, lat, ts Sensor: air_quality | fields: lon, type, lat, unit Task: Get depth from lightning where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011328
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, qc, lon, unit Sensor: visibility | fields: reading, unit, value, qc Task: Retrieve reading from dew_point whose ts is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011329
train
v2
Sensor network script: Node: pressure | code: thr | fields: type, ts, qc, level Sensor: wind_speed | fields: reading, value, ts, level Task: Fetch depth from pressure that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011330
train
v2
Sensor network script: Node: uv_index | code: thr | fields: value, level, reading, type Sensor: frost | fields: type, ts, value, unit Task: Fetch lon from uv_index that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011331
train
v3
Sensor network script: Node: dew_point | code: ref | fields: depth, unit, lon, reading Sensor: lightning | fields: lon, value, level, type Task: Retrieve level from dew_point with depth above the SUM(value) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011332
train
v1
Sensor network script: Node: humidity | code: thr | fields: lon, qc, reading, value Sensor: sunlight | fields: reading, lat, lon, qc Task: Fetch reading from humidity where unit exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011333
train
v3
Sensor network script: Node: turbidity | code: gst | fields: ts, value, reading, lat Sensor: sunlight | fields: value, level, lon, lat Task: Get level from turbidity where value exceeds the average reading from sunlight for the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011334
train
v2
Sensor network script: Node: uv_index | code: clr | fields: type, depth, qc, unit Sensor: humidity | fields: reading, level, ts, lon Task: Retrieve value from uv_index that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011335
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lon, level, type, unit Sensor: evaporation | fields: qc, ts, lon, level Task: Get value from soil_moisture where type appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011336
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: type, depth, unit, lon Sensor: frost | fields: type, depth, lat, ts Task: Get depth from cloud_cover where depth exceeds the maximum value from frost for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011337
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: type, depth, reading, level Sensor: snow_depth | fields: reading, depth, qc, lat Task: Get level from soil_moisture where depth appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011338
train
v1
Sensor network script: Node: sunlight | code: stn | fields: qc, unit, lon, value Sensor: dew_point | fields: ts, level, unit, qc Task: Get value from sunlight where type appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011339
train
v3
Sensor network script: Node: frost | code: prt | fields: depth, value, lat, ts Sensor: lightning | fields: depth, value, lon, level Task: Fetch reading from frost where depth is greater than the total of reading in lightning for matching depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011340
train
v3
Sensor network script: Node: air_quality | code: stn | fields: lon, level, type, qc Sensor: snow_depth | fields: unit, value, reading, ts Task: Retrieve reading from air_quality with value above the MAX(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011341
train
v2
Sensor network script: Node: sunlight | code: stn | fields: lon, lat, depth, ts Sensor: uv_index | fields: lon, value, qc, type Task: Get level from sunlight where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011342
train
v2
Sensor network script: Node: lightning | code: hub | fields: lat, type, depth, qc Sensor: cloud_cover | fields: type, reading, level, lat Task: Get value from lightning where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011343
train
v1
Sensor network script: Node: visibility | code: mst | fields: lat, qc, reading, depth Sensor: sunlight | fields: value, ts, qc, type Task: Fetch value from visibility where unit exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011344
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: type, lon, level, lat Sensor: soil_moisture | fields: type, reading, lon, unit Task: Fetch reading from snow_depth that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011345
train
v3
Sensor network script: Node: air_quality | code: hub | fields: level, lat, ts, lon Sensor: wind_speed | fields: lon, unit, depth, ts Task: Fetch reading from air_quality where value is greater than the count of of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011346
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: type, lon, lat, depth Sensor: pressure | fields: qc, lon, value, unit Task: Retrieve reading from snow_depth whose qc is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011347
train
v2
Sensor network script: Node: rainfall | code: hub | fields: reading, ts, level, lon Sensor: cloud_cover | fields: reading, type, value, lat Task: Retrieve lat from rainfall that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011348
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: depth, type, level, value Sensor: snow_depth | fields: lon, depth, type, unit Task: Fetch reading from wind_speed where ts exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011349
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lon, type, depth, level Sensor: wind_speed | fields: type, lat, unit, depth Task: Get reading from uv_index where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011350
train
v1
Sensor network script: Node: rainfall | code: hub | fields: value, unit, reading, level Sensor: humidity | fields: qc, depth, lon, ts Task: Fetch depth from rainfall where unit exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011351
train
v3
Sensor network script: Node: pressure | code: stn | fields: lon, unit, reading, value Sensor: snow_depth | fields: level, ts, qc, value Task: Get reading from pressure where value exceeds the count of value from snow_depth for the same type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "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_011352
train
v3
Sensor network script: Node: drought_index | code: mst | fields: lon, ts, lat, qc Sensor: evaporation | fields: lon, qc, level, unit Task: Fetch value from drought_index where value is greater than the count of of value in evaporation for matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "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_011353
train
v3
Sensor network script: Node: sunlight | code: prt | fields: qc, unit, level, type Sensor: lightning | fields: type, ts, lon, reading Task: Get reading from sunlight where value exceeds the average depth from lightning for the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011354
train
v3
Sensor network script: Node: turbidity | code: mst | fields: reading, qc, type, unit Sensor: air_quality | fields: type, depth, lat, lon Task: Get lon from turbidity where depth exceeds the count of value from air_quality for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011355
train
v1
Sensor network script: Node: pressure | code: clr | fields: qc, reading, value, lon Sensor: snow_depth | fields: type, reading, lon, unit Task: Get lat from pressure where qc appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011356
train
v3
Sensor network script: Node: rainfall | code: prt | fields: value, depth, reading, ts Sensor: lightning | fields: type, unit, depth, lon Task: Fetch value from rainfall where reading is greater than the maximum of depth in lightning for matching type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011357
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lon, qc, type, depth Sensor: temperature | fields: level, unit, depth, reading Task: Fetch depth from uv_index where unit exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011358
train
v3
Sensor network script: Node: lightning | code: ref | fields: level, value, lat, lon Sensor: wind_speed | fields: depth, reading, type, unit Task: Retrieve value from lightning with reading above the MAX(value) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011359
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: lat, unit, value, level Sensor: cloud_cover | fields: type, lon, level, qc Task: Get reading from snow_depth where type appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011360
train
v3
Sensor network script: Node: evaporation | code: thr | fields: reading, type, lon, ts Sensor: soil_moisture | fields: type, reading, level, value Task: Get level from evaporation where reading exceeds the count of value from soil_moisture for the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011361
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, lon, depth, unit Sensor: evaporation | fields: lon, ts, level, unit Task: Fetch lon from frost that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011362
train
v3
Sensor network script: Node: evaporation | code: prt | fields: type, ts, qc, lat Sensor: dew_point | fields: level, reading, ts, lon Task: Retrieve value from evaporation with depth above the MAX(depth) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011363
train
v3
Sensor network script: Node: air_quality | code: stn | fields: type, level, value, depth Sensor: temperature | fields: unit, qc, type, value Task: Get lon from air_quality where value exceeds the count of value from temperature for the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011364
train
v3
Sensor network script: Node: uv_index | code: gst | fields: ts, type, level, lat Sensor: temperature | fields: lon, type, depth, value Task: Retrieve depth from uv_index with depth above the COUNT(value) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011365
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: type, lon, unit, reading Sensor: pressure | fields: lat, value, depth, unit Task: Fetch depth from snow_depth that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011366
train
v2
Sensor network script: Node: air_quality | code: prt | fields: depth, value, reading, qc Sensor: visibility | fields: value, level, depth, qc Task: Fetch depth from air_quality that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011367
train
v1
Sensor network script: Node: evaporation | code: prt | fields: type, lat, reading, qc Sensor: turbidity | fields: lat, unit, ts, level Task: Retrieve lon from evaporation whose qc is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011368
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: value, lon, ts, lat Sensor: dew_point | fields: depth, lat, unit, ts Task: Get value from snow_depth where ts appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011369
train
v3
Sensor network script: Node: drought_index | code: gst | fields: ts, qc, unit, value Sensor: soil_moisture | fields: type, lat, qc, value Task: Fetch depth from drought_index where depth is greater than the count of of value in soil_moisture for matching unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011370
train
v1
Sensor network script: Node: uv_index | code: clr | fields: unit, value, reading, type Sensor: temperature | fields: level, lat, ts, value Task: Fetch lat from uv_index where type exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011371
train
v3
Sensor network script: Node: dew_point | code: ref | fields: type, ts, lat, depth Sensor: frost | fields: level, type, lon, depth Task: Retrieve level from dew_point with reading above the SUM(depth) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011372
train
v1
Sensor network script: Node: dew_point | code: ref | fields: unit, lon, value, depth Sensor: uv_index | fields: depth, level, ts, unit Task: Fetch value from dew_point where depth exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011373
train
v2
Sensor network script: Node: humidity | code: stn | fields: lon, unit, lat, value Sensor: rainfall | fields: unit, level, value, ts Task: Fetch reading from humidity that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011374
train
v1
Sensor network script: Node: turbidity | code: clr | fields: lat, lon, ts, value Sensor: drought_index | fields: level, lon, type, depth Task: Get depth from turbidity where type appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011375
train
v2
Sensor network script: Node: drought_index | code: gst | fields: unit, level, type, lon Sensor: evaporation | fields: lat, type, depth, value Task: Retrieve reading from drought_index that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011376
train
v2
Sensor network script: Node: visibility | code: prt | fields: reading, lon, ts, level Sensor: sunlight | fields: value, level, qc, lat Task: Retrieve reading from visibility that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011377
train
v3
Sensor network script: Node: uv_index | code: clr | fields: lat, reading, value, lon Sensor: cloud_cover | fields: depth, reading, qc, lat Task: Get value from uv_index where reading exceeds the maximum value from cloud_cover for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011378
train
v2
Sensor network script: Node: temperature | code: mst | fields: qc, value, lat, lon Sensor: drought_index | fields: depth, unit, lat, level Task: Get level from temperature where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011379
train
v1
Sensor network script: Node: evaporation | code: stn | fields: lon, reading, value, level Sensor: uv_index | fields: type, level, reading, depth Task: Get reading from evaporation where depth appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011380
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lon, reading, value, level Sensor: wind_speed | fields: lon, unit, reading, level Task: Retrieve reading from air_quality whose type is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011381
train
v2
Sensor network script: Node: dew_point | code: clr | fields: lat, qc, reading, level Sensor: snow_depth | fields: level, lon, ts, lat Task: Fetch lon from dew_point that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011382
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lon, depth, ts, lat Sensor: visibility | fields: qc, type, reading, value Task: Retrieve lon from uv_index whose depth is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011383
train
v1
Sensor network script: Node: frost | code: stn | fields: type, ts, level, lat Sensor: rainfall | fields: reading, qc, lon, lat Task: Fetch lon from frost where unit exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011384
train
v1
Sensor network script: Node: sunlight | code: prt | fields: unit, ts, value, level Sensor: drought_index | fields: value, reading, qc, unit Task: Fetch level from sunlight where qc exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011385
train
v2
Sensor network script: Node: turbidity | code: stn | fields: lon, depth, unit, level Sensor: air_quality | fields: level, depth, unit, type Task: Get reading from turbidity where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011386
train
v1
Sensor network script: Node: air_quality | code: ref | fields: lon, ts, lat, qc Sensor: pressure | fields: unit, reading, depth, lat Task: Retrieve lat from air_quality whose ts is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011387
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, lon, value, unit Sensor: snow_depth | fields: reading, depth, type, level Task: Retrieve lon from wind_speed that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011388
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: qc, lat, lon, type Sensor: frost | fields: value, type, depth, reading Task: Retrieve depth from snow_depth whose ts is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011389
train
v3
Sensor network script: Node: humidity | code: hub | fields: qc, reading, unit, type Sensor: cloud_cover | fields: qc, level, lat, unit Task: Get level from humidity where depth exceeds the count of value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011390
train
v3
Sensor network script: Node: dew_point | code: prt | fields: ts, value, depth, lon Sensor: uv_index | fields: lat, depth, unit, lon Task: Get level from dew_point where value exceeds the count of value from uv_index for the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011391
train
v2
Sensor network script: Node: air_quality | code: hub | fields: level, lon, lat, value Sensor: frost | fields: depth, type, ts, qc Task: Fetch reading from air_quality that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011392
train
v2
Sensor network script: Node: rainfall | code: prt | fields: value, reading, lon, level Sensor: dew_point | fields: ts, depth, level, lon Task: Get lat from rainfall where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011393
train
v3
Sensor network script: Node: frost | code: mst | fields: depth, qc, ts, reading Sensor: lightning | fields: reading, lat, type, lon Task: Get depth from frost where value exceeds the average value from lightning for the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011394
train
v2
Sensor network script: Node: rainfall | code: thr | fields: lat, level, type, unit Sensor: evaporation | fields: type, value, lat, qc Task: Retrieve level from rainfall that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011395
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, qc, depth, unit Sensor: temperature | fields: depth, type, unit, value Task: Retrieve reading from rainfall with value above the MIN(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011396
train
v1
Sensor network script: Node: sunlight | code: thr | fields: unit, ts, reading, qc Sensor: uv_index | fields: qc, ts, type, level Task: Get reading from sunlight where qc appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011397
train
v2
Sensor network script: Node: uv_index | code: thr | fields: qc, ts, lon, depth Sensor: air_quality | fields: qc, reading, level, depth Task: Fetch level from uv_index that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_011398
train
v1
Sensor network script: Node: visibility | code: gst | fields: level, reading, type, lon Sensor: evaporation | fields: lon, level, type, ts Task: Get reading from visibility where qc appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_011399
train