variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, lat, ts, value Sensor: wind_speed | fields: qc, depth, level, value Task: Retrieve depth from dew_point with depth above the SUM(value) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074300
train
v1
Sensor network script: Node: humidity | code: mst | fields: unit, lon, type, level Sensor: cloud_cover | fields: depth, reading, lat, value Task: Fetch level from humidity where qc exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074301
train
v3
Sensor network script: Node: frost | code: hub | fields: level, lat, type, unit Sensor: air_quality | fields: depth, lon, type, level Task: Retrieve level from frost with value above the MAX(reading) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074302
train
v2
Sensor network script: Node: turbidity | code: hub | fields: level, type, value, reading Sensor: visibility | fields: ts, reading, value, type Task: Get level from turbidity where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "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_074303
train
v2
Sensor network script: Node: rainfall | code: prt | fields: reading, ts, value, qc Sensor: turbidity | fields: value, lat, reading, ts Task: Fetch depth from rainfall that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074304
train
v1
Sensor network script: Node: sunlight | code: ref | fields: depth, level, lon, value Sensor: frost | fields: depth, unit, type, lon Task: Retrieve lat from sunlight whose ts is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074305
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: type, level, depth, ts Sensor: snow_depth | fields: qc, level, depth, type Task: Fetch reading from wind_speed that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074306
train
v3
Sensor network script: Node: uv_index | code: hub | fields: unit, type, depth, qc Sensor: evaporation | fields: qc, ts, lon, level Task: Fetch depth from uv_index where depth is greater than the minimum of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074307
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, depth, reading, ts Sensor: humidity | fields: depth, level, type, lon Task: Get value from air_quality where qc appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074308
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: value, reading, qc, type Sensor: air_quality | fields: lon, lat, unit, ts Task: Get lat from wind_speed where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074309
train
v2
Sensor network script: Node: air_quality | code: mst | fields: reading, ts, type, value Sensor: sunlight | fields: qc, value, depth, lat Task: Retrieve level from air_quality that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074310
train
v2
Sensor network script: Node: dew_point | code: stn | fields: unit, lat, lon, depth Sensor: snow_depth | fields: type, lat, level, value Task: Fetch value from dew_point that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074311
train
v2
Sensor network script: Node: dew_point | code: stn | fields: qc, type, ts, unit Sensor: temperature | fields: ts, lat, qc, unit Task: Retrieve reading from dew_point that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074312
train
v1
Sensor network script: Node: air_quality | code: clr | fields: ts, level, type, value Sensor: soil_moisture | fields: lat, lon, type, value Task: Retrieve lon from air_quality whose qc is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074313
train
v1
Sensor network script: Node: humidity | code: prt | fields: reading, qc, lat, type Sensor: uv_index | fields: lon, unit, depth, level Task: Retrieve depth from humidity whose depth is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074314
train
v2
Sensor network script: Node: pressure | code: clr | fields: ts, lat, depth, lon Sensor: drought_index | fields: ts, lat, lon, reading Task: Fetch value from pressure that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074315
train
v1
Sensor network script: Node: humidity | code: mst | fields: value, qc, level, ts Sensor: drought_index | fields: level, qc, depth, unit Task: Retrieve lat from humidity whose type is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074316
train
v1
Sensor network script: Node: frost | code: clr | fields: ts, qc, reading, lat Sensor: air_quality | fields: reading, ts, unit, qc Task: Get lat from frost where ts appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074317
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lat, lon, ts, qc Sensor: visibility | fields: lat, depth, ts, value Task: Retrieve reading from cloud_cover whose qc is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074318
train
v2
Sensor network script: Node: uv_index | code: hub | fields: qc, lon, ts, value Sensor: visibility | fields: reading, lat, value, qc Task: Get reading from uv_index where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074319
train
v2
Sensor network script: Node: rainfall | code: mst | fields: lon, unit, value, ts Sensor: drought_index | fields: qc, level, value, lon Task: Get depth from rainfall where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074320
train
v1
Sensor network script: Node: air_quality | code: mst | fields: reading, lon, value, depth Sensor: evaporation | fields: lat, qc, ts, reading Task: Get lat from air_quality where unit appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074321
train
v2
Sensor network script: Node: lightning | code: hub | fields: unit, lat, ts, type Sensor: frost | fields: lon, level, value, depth Task: Get level from lightning where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074322
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: qc, level, unit, ts Sensor: drought_index | fields: ts, value, unit, lat Task: Retrieve lon from snow_depth that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074323
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: type, unit, depth, lon Sensor: evaporation | fields: qc, depth, ts, lon Task: Retrieve lon from soil_moisture with depth above the COUNT(reading) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074324
train
v3
Sensor network script: Node: lightning | code: thr | fields: reading, lat, depth, lon Sensor: frost | fields: lat, reading, depth, value Task: Get reading from lightning where depth exceeds the count of reading from frost for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074325
train
v2
Sensor network script: Node: humidity | code: stn | fields: lat, unit, reading, ts Sensor: air_quality | fields: ts, lat, qc, type Task: Retrieve value from humidity that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074326
train
v2
Sensor network script: Node: temperature | code: prt | fields: level, ts, unit, lat Sensor: evaporation | fields: ts, value, qc, unit Task: Retrieve lon from temperature that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074327
train
v3
Sensor network script: Node: pressure | code: ref | fields: depth, unit, level, reading Sensor: rainfall | fields: depth, qc, reading, lat Task: Retrieve lat from pressure with value above the SUM(value) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074328
train
v2
Sensor network script: Node: lightning | code: hub | fields: depth, lon, ts, value Sensor: pressure | fields: lon, value, qc, unit Task: Fetch lat from lightning that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074329
train
v3
Sensor network script: Node: lightning | code: hub | fields: depth, lat, qc, unit Sensor: snow_depth | fields: reading, value, lat, qc Task: Get level from lightning where depth exceeds the maximum value from snow_depth for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074330
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lon, type, lat, value Sensor: dew_point | fields: qc, lat, level, ts Task: Retrieve depth from rainfall whose depth is found in dew_point records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074331
train
v3
Sensor network script: Node: dew_point | code: gst | fields: lon, value, qc, type Sensor: soil_moisture | fields: type, ts, value, lat Task: Fetch value from dew_point where value is greater than the total of reading in soil_moisture for matching ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074332
train
v1
Sensor network script: Node: temperature | code: ref | fields: ts, reading, lat, type Sensor: visibility | fields: lon, lat, reading, value Task: Get depth from temperature where qc appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074333
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: depth, lat, type, ts Sensor: temperature | fields: qc, reading, depth, lon Task: Fetch level from cloud_cover where reading is greater than the total of reading in temperature for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074334
train
v3
Sensor network script: Node: pressure | code: hub | fields: unit, qc, reading, value Sensor: soil_moisture | fields: depth, reading, lon, lat Task: Get depth from pressure where reading exceeds the minimum depth from soil_moisture for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074335
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: reading, ts, depth, qc Sensor: dew_point | fields: depth, lat, type, level Task: Fetch lon from soil_moisture where ts exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074336
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: level, lat, depth, value Sensor: rainfall | fields: reading, depth, ts, value Task: Get lon from soil_moisture where unit appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074337
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, level, ts, type Sensor: frost | fields: depth, ts, qc, value Task: Fetch reading from sunlight where qc exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074338
train
v2
Sensor network script: Node: rainfall | code: thr | fields: type, ts, level, reading Sensor: cloud_cover | fields: lat, reading, depth, level Task: Fetch lat from rainfall that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074339
train
v2
Sensor network script: Node: turbidity | code: clr | fields: unit, depth, value, level Sensor: uv_index | fields: qc, ts, depth, lon Task: Get value from turbidity where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074340
train
v1
Sensor network script: Node: lightning | code: ref | fields: level, depth, reading, value Sensor: visibility | fields: lat, lon, depth, ts Task: Retrieve value from lightning whose depth is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074341
train
v2
Sensor network script: Node: drought_index | code: prt | fields: ts, lon, type, depth Sensor: wind_speed | fields: level, ts, value, depth Task: Fetch level from drought_index that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074342
train
v1
Sensor network script: Node: visibility | code: hub | fields: value, lat, depth, unit Sensor: humidity | fields: qc, depth, type, unit Task: Get lon from visibility where unit appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074343
train
v1
Sensor network script: Node: dew_point | code: stn | fields: unit, lon, type, lat Sensor: snow_depth | fields: ts, qc, value, level Task: Fetch lon from dew_point where qc exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074344
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: type, reading, lat, level Sensor: cloud_cover | fields: unit, lon, ts, level Task: Fetch lat from soil_moisture where value is greater than the count of of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074345
train
v3
Sensor network script: Node: visibility | code: stn | fields: value, depth, lat, unit Sensor: air_quality | fields: level, value, ts, type Task: Fetch reading from visibility where reading is greater than the total of depth in air_quality for matching type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074346
train
v2
Sensor network script: Node: rainfall | code: thr | fields: type, value, ts, depth Sensor: wind_speed | fields: depth, reading, lat, level Task: Get lat from rainfall where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074347
train
v3
Sensor network script: Node: sunlight | code: hub | fields: level, value, depth, reading Sensor: rainfall | fields: depth, type, level, value Task: Retrieve lon from sunlight with depth above the MIN(value) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074348
train
v1
Sensor network script: Node: frost | code: ref | fields: depth, unit, type, level Sensor: drought_index | fields: level, qc, reading, lat Task: Get lat from frost where depth appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074349
train
v2
Sensor network script: Node: uv_index | code: ref | fields: unit, depth, level, qc Sensor: evaporation | fields: qc, type, unit, ts Task: Retrieve lat from uv_index that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074350
train
v1
Sensor network script: Node: air_quality | code: thr | fields: value, depth, unit, ts Sensor: rainfall | fields: unit, lon, depth, level Task: Fetch depth from air_quality where depth exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074351
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: level, unit, qc, depth Sensor: air_quality | fields: ts, value, reading, lat Task: Get lat from snow_depth where depth exceeds the total reading from air_quality for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074352
train
v3
Sensor network script: Node: uv_index | code: thr | fields: type, unit, lon, qc Sensor: drought_index | fields: type, value, qc, unit Task: Get reading from uv_index where value exceeds the total value from drought_index for the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074353
train
v3
Sensor network script: Node: air_quality | code: gst | fields: level, qc, depth, ts Sensor: drought_index | fields: type, qc, unit, depth Task: Fetch lat from air_quality where value is greater than the maximum of value in drought_index for matching depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074354
train
v2
Sensor network script: Node: turbidity | code: mst | fields: value, type, reading, ts Sensor: humidity | fields: value, reading, depth, qc Task: Retrieve lat from turbidity that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074355
train
v1
Sensor network script: Node: frost | code: hub | fields: depth, unit, lat, lon Sensor: soil_moisture | fields: reading, level, unit, lat Task: Get value from frost where ts appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074356
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lat, type, lon, qc Sensor: humidity | fields: type, lon, lat, reading Task: Fetch lon from rainfall where depth is greater than the count of of reading in humidity for matching ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074357
train
v1
Sensor network script: Node: pressure | code: clr | fields: type, unit, reading, lon Sensor: rainfall | fields: level, reading, type, lat Task: Fetch lon from pressure where type exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074358
train
v1
Sensor network script: Node: drought_index | code: prt | fields: level, value, ts, lon Sensor: pressure | fields: lon, reading, level, depth Task: Fetch level from drought_index where qc exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074359
train
v2
Sensor network script: Node: sunlight | code: ref | fields: level, reading, ts, depth Sensor: snow_depth | fields: qc, type, lon, value Task: Retrieve value from sunlight that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074360
train
v2
Sensor network script: Node: turbidity | code: stn | fields: level, ts, lon, qc Sensor: frost | fields: lat, unit, qc, level Task: Fetch lon from turbidity that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074361
train
v2
Sensor network script: Node: sunlight | code: clr | fields: value, reading, depth, qc Sensor: turbidity | fields: type, value, qc, lon Task: Fetch lat from sunlight that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074362
train
v2
Sensor network script: Node: visibility | code: gst | fields: ts, type, depth, lon Sensor: rainfall | fields: value, qc, lon, ts Task: Get lon from visibility where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074363
train
v3
Sensor network script: Node: dew_point | code: clr | fields: reading, lon, ts, lat Sensor: frost | fields: qc, type, depth, value Task: Retrieve lon from dew_point with depth above the AVG(depth) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074364
train
v2
Sensor network script: Node: temperature | code: prt | fields: lon, type, reading, unit Sensor: drought_index | fields: level, depth, qc, lon Task: Fetch level from temperature that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074365
train
v3
Sensor network script: Node: pressure | code: prt | fields: lon, type, lat, ts Sensor: drought_index | fields: reading, value, type, depth Task: Fetch reading from pressure where value is greater than the count of of reading in drought_index for matching ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074366
train
v1
Sensor network script: Node: frost | code: thr | fields: depth, value, level, lat Sensor: cloud_cover | fields: level, depth, unit, reading Task: Get lat from frost where type appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074367
train
v2
Sensor network script: Node: turbidity | code: gst | fields: type, reading, lat, unit Sensor: visibility | fields: depth, reading, lat, type Task: Retrieve lat from turbidity that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074368
train
v3
Sensor network script: Node: rainfall | code: mst | fields: value, type, lon, level Sensor: air_quality | fields: value, type, level, lon Task: Fetch lon from rainfall where reading is greater than the maximum of value in air_quality for matching depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074369
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: depth, type, lon, reading Sensor: dew_point | fields: qc, ts, lon, level Task: Get lat from snow_depth where ts appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074370
train
v2
Sensor network script: Node: humidity | code: mst | fields: depth, qc, value, type Sensor: lightning | fields: value, type, level, reading Task: Fetch reading from humidity that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074371
train
v2
Sensor network script: Node: turbidity | code: hub | fields: level, reading, value, unit Sensor: humidity | fields: qc, lon, unit, depth Task: Fetch reading from turbidity that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074372
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: ts, lat, value, level Sensor: sunlight | fields: value, type, unit, ts Task: Retrieve lon from snow_depth with depth above the AVG(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074373
train
v3
Sensor network script: Node: drought_index | code: gst | fields: level, lat, reading, depth Sensor: sunlight | fields: reading, unit, lat, qc Task: Retrieve lon from drought_index with value above the AVG(depth) of sunlight readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074374
train
v3
Sensor network script: Node: humidity | code: clr | fields: value, reading, lat, type Sensor: uv_index | fields: value, lat, level, unit Task: Get reading from humidity where value exceeds the total depth from uv_index for the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074375
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: unit, level, value, qc Sensor: air_quality | fields: ts, value, qc, depth Task: Fetch lat from wind_speed where ts exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074376
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: type, reading, depth, unit Sensor: evaporation | fields: level, value, type, unit Task: Get lon from wind_speed where value exceeds the average value from evaporation for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074377
train
v3
Sensor network script: Node: visibility | code: stn | fields: lat, lon, qc, value Sensor: evaporation | fields: type, lat, lon, level Task: Retrieve reading from visibility with value above the MIN(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074378
train
v3
Sensor network script: Node: pressure | code: prt | fields: unit, depth, level, value Sensor: drought_index | fields: unit, depth, lon, reading Task: Get level from pressure where reading exceeds the maximum depth from drought_index for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074379
train
v1
Sensor network script: Node: sunlight | code: gst | fields: ts, lon, depth, type Sensor: snow_depth | fields: level, reading, lat, depth Task: Fetch lon from sunlight where type exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074380
train
v3
Sensor network script: Node: drought_index | code: ref | fields: qc, reading, level, ts Sensor: dew_point | fields: lon, unit, lat, value Task: Retrieve lat from drought_index with reading above the MIN(value) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074381
train
v2
Sensor network script: Node: air_quality | code: hub | fields: lat, reading, lon, type Sensor: cloud_cover | fields: qc, reading, value, lon Task: Get reading from air_quality where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074382
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: value, reading, qc, lon Sensor: evaporation | fields: lat, depth, type, ts Task: Retrieve lon from wind_speed with value above the COUNT(value) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074383
train
v3
Sensor network script: Node: evaporation | code: gst | fields: value, level, reading, lon Sensor: turbidity | fields: level, qc, ts, reading Task: Get lon from evaporation where depth exceeds the count of depth from turbidity for the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074384
train
v2
Sensor network script: Node: pressure | code: ref | fields: ts, lat, unit, lon Sensor: temperature | fields: lat, unit, lon, type Task: Retrieve lon from pressure that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074385
train
v2
Sensor network script: Node: dew_point | code: ref | fields: lon, reading, value, type Sensor: rainfall | fields: unit, ts, lon, level Task: Retrieve value from dew_point that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074386
train
v2
Sensor network script: Node: dew_point | code: thr | fields: type, qc, depth, level Sensor: pressure | fields: lon, ts, reading, qc Task: Retrieve level from dew_point that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074387
train
v3
Sensor network script: Node: uv_index | code: clr | fields: value, type, level, lat Sensor: evaporation | fields: unit, type, depth, lat Task: Get depth from uv_index where depth exceeds the total reading from evaporation for the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074388
train
v2
Sensor network script: Node: dew_point | code: hub | fields: qc, value, type, lon Sensor: drought_index | fields: depth, qc, ts, reading Task: Retrieve depth from dew_point that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074389
train
v1
Sensor network script: Node: uv_index | code: ref | fields: ts, depth, unit, qc Sensor: humidity | fields: qc, depth, lat, ts Task: Fetch level from uv_index where ts exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074390
train
v2
Sensor network script: Node: temperature | code: ref | fields: lon, lat, type, unit Sensor: wind_speed | fields: ts, reading, depth, value Task: Get depth from temperature where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074391
train
v1
Sensor network script: Node: air_quality | code: clr | fields: ts, lat, depth, unit Sensor: soil_moisture | fields: type, level, depth, unit Task: Fetch lon from air_quality where unit exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074392
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: type, level, lat, depth Sensor: humidity | fields: type, level, value, reading Task: Get value from wind_speed where reading exceeds the maximum depth from humidity for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074393
train
v1
Sensor network script: Node: lightning | code: mst | fields: ts, reading, type, value Sensor: rainfall | fields: ts, unit, lon, level Task: Retrieve level from lightning whose qc is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074394
train
v1
Sensor network script: Node: temperature | code: gst | fields: lon, qc, depth, unit Sensor: cloud_cover | fields: depth, reading, value, lon Task: Fetch value from temperature where type exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074395
train
v2
Sensor network script: Node: turbidity | code: ref | fields: lat, ts, reading, lon Sensor: wind_speed | fields: unit, depth, reading, lon Task: Retrieve reading from turbidity that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074396
train
v2
Sensor network script: Node: drought_index | code: prt | fields: type, ts, level, lon Sensor: evaporation | fields: lon, unit, qc, lat Task: Fetch depth from drought_index that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074397
train
v1
Sensor network script: Node: humidity | code: clr | fields: depth, reading, ts, qc Sensor: pressure | fields: type, unit, level, qc Task: Get lat from humidity where unit appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074398
train
v3
Sensor network script: Node: air_quality | code: ref | fields: value, reading, lon, type Sensor: snow_depth | fields: lon, depth, type, level Task: Get value from air_quality where reading exceeds the minimum value from snow_depth for the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074399
train