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: temperature | code: prt | fields: ts, lat, qc, value Sensor: evaporation | fields: reading, unit, value, lat Task: Get value from temperature where reading exceeds the minimum reading from evaporation for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078600
train
v3
Sensor network script: Node: air_quality | code: thr | fields: qc, type, value, depth Sensor: uv_index | fields: type, unit, ts, lat Task: Get level from air_quality where reading exceeds the count of depth from uv_index for the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078601
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: lat, depth, qc, type Sensor: soil_moisture | fields: lat, type, lon, value Task: Retrieve lat from cloud_cover that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078602
train
v3
Sensor network script: Node: evaporation | code: ref | fields: value, type, ts, lon Sensor: air_quality | fields: type, level, lat, value Task: Get depth from evaporation where depth exceeds the total reading from air_quality for the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078603
train
v3
Sensor network script: Node: humidity | code: clr | fields: level, type, unit, reading Sensor: air_quality | fields: qc, type, lon, ts Task: Get depth from humidity where reading exceeds the minimum depth from air_quality for the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078604
train
v2
Sensor network script: Node: frost | code: stn | fields: qc, value, unit, depth Sensor: uv_index | fields: level, reading, lat, ts Task: Retrieve lat from frost that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078605
train
v1
Sensor network script: Node: visibility | code: clr | fields: value, lat, level, type Sensor: soil_moisture | fields: reading, ts, lon, unit Task: Fetch reading from visibility where type exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078606
train
v1
Sensor network script: Node: pressure | code: gst | fields: lon, depth, type, reading Sensor: turbidity | fields: lon, ts, type, unit Task: Retrieve value from pressure whose depth is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078607
train
v2
Sensor network script: Node: rainfall | code: ref | fields: depth, ts, reading, type Sensor: pressure | fields: qc, lat, reading, level Task: Get reading from rainfall where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078608
train
v3
Sensor network script: Node: turbidity | code: clr | fields: qc, level, unit, lat Sensor: wind_speed | fields: lat, value, unit, type Task: Retrieve lon from turbidity with reading above the MAX(value) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078609
train
v1
Sensor network script: Node: lightning | code: stn | fields: reading, qc, type, lon Sensor: wind_speed | fields: type, lon, ts, value Task: Get value from lightning where unit appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078610
train
v3
Sensor network script: Node: humidity | code: ref | fields: reading, ts, lon, qc Sensor: uv_index | fields: ts, level, lon, reading Task: Get lon from humidity where depth exceeds the maximum depth from uv_index for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078611
train
v2
Sensor network script: Node: dew_point | code: mst | fields: ts, depth, reading, unit Sensor: sunlight | fields: lat, qc, type, level Task: Get depth from dew_point where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078612
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: depth, level, qc, type Sensor: wind_speed | fields: depth, unit, level, lon Task: Retrieve depth from cloud_cover that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078613
train
v1
Sensor network script: Node: evaporation | code: clr | fields: reading, level, type, qc Sensor: turbidity | fields: lat, qc, value, type Task: Retrieve depth from evaporation whose ts is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078614
train
v2
Sensor network script: Node: turbidity | code: clr | fields: level, ts, lat, unit Sensor: dew_point | fields: type, unit, value, lat Task: Retrieve lon from turbidity that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078615
train
v2
Sensor network script: Node: frost | code: ref | fields: lat, value, depth, unit Sensor: lightning | fields: lon, qc, ts, type Task: Get lat from frost where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078616
train
v1
Sensor network script: Node: lightning | code: thr | fields: unit, qc, lat, lon Sensor: evaporation | fields: qc, reading, depth, level Task: Retrieve reading from lightning whose ts is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078617
train
v3
Sensor network script: Node: evaporation | code: stn | fields: value, reading, unit, depth Sensor: wind_speed | fields: depth, type, unit, lon Task: Fetch depth from evaporation where depth is greater than the average of reading in wind_speed for matching ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078618
train
v1
Sensor network script: Node: air_quality | code: stn | fields: reading, qc, unit, lat Sensor: snow_depth | fields: type, lat, depth, ts Task: Get value from air_quality where ts appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078619
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: unit, value, reading, type Sensor: air_quality | fields: qc, lat, ts, lon Task: Retrieve depth from soil_moisture whose ts is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078620
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: lat, depth, level, ts Sensor: snow_depth | fields: ts, lon, type, lat Task: Fetch value from cloud_cover where depth is greater than the count of of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078621
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: lat, value, type, depth Sensor: humidity | fields: type, depth, lon, value Task: Get value from soil_moisture where depth exceeds the count of reading from humidity for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078622
train
v2
Sensor network script: Node: uv_index | code: gst | fields: reading, lat, qc, value Sensor: temperature | fields: value, lat, unit, lon Task: Get lon from uv_index where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078623
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: level, unit, lat, ts Sensor: wind_speed | fields: reading, unit, type, ts Task: Retrieve reading from soil_moisture with depth above the SUM(value) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078624
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: ts, type, unit, level Sensor: soil_moisture | fields: qc, level, depth, reading Task: Retrieve lon from snow_depth whose ts is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078625
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: type, lon, unit, reading Sensor: evaporation | fields: lat, unit, value, qc Task: Get level from snow_depth where unit appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078626
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: reading, ts, value, lon Sensor: wind_speed | fields: qc, unit, lat, value Task: Get lon from soil_moisture where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078627
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: level, lon, lat, depth Sensor: sunlight | fields: type, level, lon, depth Task: Fetch lat from wind_speed where ts exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078628
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: level, value, unit, type Sensor: drought_index | fields: value, lon, unit, reading Task: Fetch depth from soil_moisture that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078629
train
v3
Sensor network script: Node: temperature | code: stn | fields: type, lon, unit, level Sensor: uv_index | fields: qc, lat, ts, depth Task: Retrieve level from temperature with depth above the MIN(depth) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078630
train
v3
Sensor network script: Node: rainfall | code: prt | fields: lat, value, type, unit Sensor: snow_depth | fields: level, depth, unit, reading Task: Get level from rainfall where value exceeds the count of value from snow_depth for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078631
train
v3
Sensor network script: Node: temperature | code: ref | fields: reading, type, ts, value Sensor: evaporation | fields: value, reading, depth, unit Task: Get depth from temperature where reading exceeds the count of value from evaporation for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078632
train
v3
Sensor network script: Node: air_quality | code: mst | fields: type, reading, lat, ts Sensor: lightning | fields: type, ts, reading, unit Task: Retrieve lon from air_quality with value above the AVG(value) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078633
train
v3
Sensor network script: Node: visibility | code: gst | fields: value, qc, unit, lon Sensor: temperature | fields: unit, level, ts, value Task: Get value from visibility where reading exceeds the maximum reading from temperature for the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078634
train
v3
Sensor network script: Node: rainfall | code: hub | fields: level, type, lon, reading Sensor: air_quality | fields: depth, type, lat, ts Task: Get lat from rainfall where depth exceeds the count of depth from air_quality for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078635
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: qc, value, unit, lat Sensor: humidity | fields: lat, qc, ts, type Task: Retrieve depth from snow_depth that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078636
train
v2
Sensor network script: Node: sunlight | code: prt | fields: level, type, value, qc Sensor: snow_depth | fields: reading, level, qc, lon Task: Get lat from sunlight where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078637
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: value, type, lat, depth Sensor: air_quality | fields: value, unit, reading, type Task: Get level from cloud_cover where value exceeds the total reading from air_quality for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078638
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: value, ts, depth, lon Sensor: humidity | fields: unit, depth, lon, level Task: Retrieve lon from cloud_cover that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078639
train
v3
Sensor network script: Node: air_quality | code: ref | fields: qc, reading, lon, depth Sensor: temperature | fields: ts, unit, type, value Task: Retrieve value from air_quality with value above the MAX(depth) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078640
train
v1
Sensor network script: Node: rainfall | code: hub | fields: value, depth, reading, qc Sensor: humidity | fields: lat, unit, reading, 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_078641
train
v2
Sensor network script: Node: rainfall | code: thr | fields: lon, depth, qc, lat Sensor: turbidity | fields: reading, type, depth, qc Task: Fetch reading from rainfall that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078642
train
v1
Sensor network script: Node: frost | code: mst | fields: lon, level, reading, unit Sensor: wind_speed | fields: qc, depth, level, value Task: Get lat from frost where qc appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078643
train
v3
Sensor network script: Node: sunlight | code: stn | fields: level, unit, lon, lat Sensor: wind_speed | fields: lon, lat, level, ts Task: Retrieve level from sunlight with reading above the COUNT(reading) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078644
train
v2
Sensor network script: Node: drought_index | code: thr | fields: ts, unit, lon, lat Sensor: uv_index | fields: level, value, type, unit Task: Retrieve level from drought_index that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078645
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lat, ts, type, reading Sensor: air_quality | fields: lon, type, value, depth Task: Fetch value from dew_point where reading is greater than the count of of reading in air_quality for matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078646
train
v1
Sensor network script: Node: dew_point | code: ref | fields: lat, unit, ts, lon Sensor: visibility | fields: ts, depth, lat, type Task: Retrieve lon from dew_point whose qc is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078647
train
v1
Sensor network script: Node: pressure | code: ref | fields: depth, lon, qc, reading Sensor: cloud_cover | fields: type, qc, lat, value Task: Get value from pressure where depth appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078648
train
v2
Sensor network script: Node: lightning | code: clr | fields: lat, ts, type, lon Sensor: dew_point | fields: unit, value, lat, ts Task: Retrieve lon from lightning that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078649
train
v1
Sensor network script: Node: rainfall | code: prt | fields: level, depth, ts, lon Sensor: cloud_cover | fields: level, value, lon, qc Task: Fetch lon from rainfall where qc exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078650
train
v3
Sensor network script: Node: visibility | code: stn | fields: level, value, reading, unit Sensor: sunlight | fields: unit, ts, lon, type Task: Fetch reading from visibility where depth is greater than the minimum of value in sunlight for matching type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078651
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: depth, type, qc, unit Sensor: rainfall | fields: unit, lat, value, level Task: Fetch value from wind_speed where qc exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078652
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: qc, value, lat, reading Sensor: lightning | fields: level, lon, qc, lat Task: Retrieve level from soil_moisture that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078653
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: level, lat, lon, depth Sensor: snow_depth | fields: type, lat, ts, reading Task: Get level from soil_moisture where reading exceeds the count of depth from snow_depth for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078654
train
v2
Sensor network script: Node: lightning | code: gst | fields: level, unit, qc, lon Sensor: turbidity | fields: reading, ts, lon, type Task: Retrieve reading from lightning that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078655
train
v1
Sensor network script: Node: pressure | code: hub | fields: ts, lon, type, unit Sensor: humidity | fields: level, depth, value, type Task: Get lat from pressure where qc appears in humidity readings with matching type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078656
train
v3
Sensor network script: Node: dew_point | code: prt | fields: ts, type, lat, unit Sensor: evaporation | fields: ts, lat, type, level Task: Get lon from dew_point where depth exceeds the average reading from evaporation for the same ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078657
train
v1
Sensor network script: Node: sunlight | code: mst | fields: unit, reading, type, lon Sensor: lightning | fields: unit, type, depth, reading Task: Retrieve lat from sunlight whose ts is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078658
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: type, unit, value, level Sensor: wind_speed | fields: lat, depth, lon, ts Task: Get depth from soil_moisture where depth exceeds the minimum reading from wind_speed for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078659
train
v3
Sensor network script: Node: humidity | code: prt | fields: type, qc, reading, ts Sensor: pressure | fields: value, lat, level, lon Task: Get depth from humidity where value exceeds the maximum value from pressure for the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078660
train
v3
Sensor network script: Node: rainfall | code: prt | fields: level, value, lon, unit Sensor: soil_moisture | fields: lon, qc, value, level Task: Retrieve lat from rainfall with value above the COUNT(value) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078661
train
v1
Sensor network script: Node: air_quality | code: gst | fields: qc, lat, ts, depth Sensor: evaporation | fields: reading, value, lat, qc Task: Retrieve lon from air_quality whose ts is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078662
train
v2
Sensor network script: Node: evaporation | code: ref | fields: value, qc, lon, type Sensor: temperature | fields: qc, depth, value, reading Task: Fetch level from evaporation that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078663
train
v1
Sensor network script: Node: frost | code: hub | fields: value, level, type, lat Sensor: humidity | fields: value, ts, reading, type Task: Retrieve depth from frost whose unit is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078664
train
v2
Sensor network script: Node: air_quality | code: mst | fields: lon, depth, ts, value Sensor: evaporation | fields: ts, value, qc, depth Task: Retrieve lon from air_quality that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078665
train
v1
Sensor network script: Node: visibility | code: clr | fields: value, lon, level, ts Sensor: uv_index | fields: level, ts, qc, lon Task: Fetch value from visibility where ts exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078666
train
v1
Sensor network script: Node: evaporation | code: prt | fields: level, lat, type, ts Sensor: temperature | fields: ts, lat, qc, type Task: Get value from evaporation where depth appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078667
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: ts, qc, lon, level Sensor: frost | fields: type, qc, reading, level Task: Retrieve lat from snow_depth with depth above the SUM(depth) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078668
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lon, reading, ts, unit Sensor: evaporation | fields: lat, value, qc, ts Task: Retrieve reading from soil_moisture whose unit is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078669
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: ts, qc, lon, reading Sensor: lightning | fields: reading, unit, ts, lat Task: Retrieve level from soil_moisture whose ts is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078670
train
v3
Sensor network script: Node: humidity | code: stn | fields: type, depth, reading, unit Sensor: drought_index | fields: qc, level, ts, lon Task: Retrieve level from humidity with reading above the MAX(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078671
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: type, reading, level, qc Sensor: pressure | fields: level, unit, lon, ts Task: Get value from soil_moisture where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078672
train
v2
Sensor network script: Node: evaporation | code: gst | fields: level, unit, type, qc Sensor: frost | fields: unit, qc, ts, level Task: Get lon from evaporation where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078673
train
v2
Sensor network script: Node: drought_index | code: ref | fields: reading, lon, type, unit Sensor: rainfall | fields: unit, depth, value, ts Task: Fetch lon from drought_index that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078674
train
v3
Sensor network script: Node: temperature | code: clr | fields: qc, unit, lat, lon Sensor: uv_index | fields: type, ts, lon, reading Task: Get value from temperature where value exceeds the count of value from uv_index for the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078675
train
v3
Sensor network script: Node: lightning | code: mst | fields: lon, qc, depth, type Sensor: wind_speed | fields: type, reading, lat, depth Task: Retrieve depth from lightning with value above the MAX(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078676
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: unit, lon, value, depth Sensor: rainfall | fields: value, type, lon, level Task: Retrieve lat from wind_speed that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078677
train
v2
Sensor network script: Node: uv_index | code: hub | fields: depth, lat, qc, value Sensor: lightning | fields: lat, lon, ts, depth Task: Get lon from uv_index where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078678
train
v3
Sensor network script: Node: humidity | code: ref | fields: reading, value, lon, depth Sensor: drought_index | fields: lat, value, qc, lon Task: Get value from humidity where reading exceeds the total value from drought_index for the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078679
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: reading, level, depth, type Sensor: sunlight | fields: ts, reading, unit, lat Task: Retrieve depth from wind_speed with value above the MIN(reading) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078680
train
v1
Sensor network script: Node: sunlight | code: stn | fields: ts, lon, level, depth Sensor: snow_depth | fields: value, reading, ts, lat Task: Retrieve value from sunlight whose ts is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078681
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, depth, lon, unit Sensor: cloud_cover | fields: qc, ts, lat, lon Task: Get lon from evaporation where qc appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078682
train
v3
Sensor network script: Node: uv_index | code: clr | fields: unit, level, lon, reading Sensor: cloud_cover | fields: lat, lon, unit, type Task: Retrieve value from uv_index with reading above the MIN(depth) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", 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": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078683
train
v1
Sensor network script: Node: visibility | code: mst | fields: depth, reading, ts, qc Sensor: lightning | fields: lat, unit, lon, reading Task: Get value from visibility where unit appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078684
train
v1
Sensor network script: Node: sunlight | code: clr | fields: level, lat, lon, depth Sensor: humidity | fields: reading, type, value, qc Task: Retrieve value from sunlight whose ts is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078685
train
v3
Sensor network script: Node: rainfall | code: clr | fields: depth, qc, lon, unit Sensor: lightning | fields: unit, ts, reading, value Task: Fetch lon from rainfall where depth is greater than the count of of value in lightning for matching unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078686
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, lat, reading, level Sensor: humidity | fields: qc, ts, level, lat Task: Fetch lon from air_quality where qc exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078687
train
v3
Sensor network script: Node: frost | code: prt | fields: reading, ts, lat, unit Sensor: snow_depth | fields: ts, type, lat, value Task: Retrieve lon from frost with depth above the MIN(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078688
train
v1
Sensor network script: Node: temperature | code: hub | fields: ts, lon, reading, type Sensor: lightning | fields: lat, ts, unit, level Task: Fetch level from temperature where type exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078689
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: depth, type, ts, value Sensor: pressure | fields: qc, lon, reading, level Task: Fetch lat from wind_speed where type exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078690
train
v2
Sensor network script: Node: sunlight | code: hub | fields: ts, unit, value, depth Sensor: lightning | fields: value, depth, level, type Task: Get value from sunlight where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078691
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: type, value, lon, lat Sensor: frost | fields: value, reading, ts, qc Task: Retrieve lon from wind_speed whose ts is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078692
train
v2
Sensor network script: Node: lightning | code: thr | fields: depth, lon, lat, ts Sensor: snow_depth | fields: type, ts, depth, value Task: Get value from lightning where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078693
train
v1
Sensor network script: Node: visibility | code: prt | fields: lat, type, value, ts Sensor: wind_speed | fields: unit, level, value, reading Task: Fetch depth from visibility where depth exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078694
train
v1
Sensor network script: Node: air_quality | code: stn | fields: level, type, unit, lon Sensor: sunlight | fields: level, value, lon, depth Task: Retrieve value from air_quality whose depth is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078695
train
v3
Sensor network script: Node: pressure | code: mst | fields: reading, lon, value, qc Sensor: visibility | fields: lon, ts, qc, unit Task: Retrieve reading from pressure with value above the MIN(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078696
train
v1
Sensor network script: Node: humidity | code: hub | fields: ts, reading, level, type Sensor: evaporation | fields: qc, ts, lat, depth Task: Retrieve level from humidity whose depth is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078697
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: reading, lat, value, lon Sensor: evaporation | fields: ts, unit, reading, qc Task: Fetch lon from snow_depth that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_078698
train
v2
Sensor network script: Node: air_quality | code: mst | fields: type, qc, unit, depth Sensor: temperature | fields: level, lon, value, lat Task: Get depth from air_quality where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_078699
train