variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, ts, value, unit Sensor: soil_moisture | fields: lat, depth, level, type Task: Fetch level from cloud_cover where depth exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064700
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: depth, type, value, qc Sensor: turbidity | fields: value, type, lat, qc Task: Retrieve reading from cloud_cover with value above the COUNT(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064701
train
v3
Sensor network script: Node: frost | code: mst | fields: depth, value, lon, type Sensor: rainfall | fields: value, reading, qc, unit Task: Get depth from frost where reading exceeds the total depth from rainfall for the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064702
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, unit, value, lon Sensor: rainfall | fields: ts, level, value, depth Task: Retrieve value from soil_moisture that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064703
train
v2
Sensor network script: Node: air_quality | code: mst | fields: value, type, unit, qc Sensor: temperature | fields: depth, qc, ts, type 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_064704
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: level, lat, ts, unit Sensor: sunlight | fields: level, lon, unit, reading Task: Get level from wind_speed where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064705
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: type, level, reading, lon Sensor: wind_speed | fields: type, lon, unit, lat Task: Fetch lon from snow_depth where depth is greater than the total of value in wind_speed for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064706
train
v3
Sensor network script: Node: lightning | code: gst | fields: unit, lat, level, reading Sensor: frost | fields: unit, level, reading, type Task: Retrieve lon from lightning with reading above the MAX(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064707
train
v3
Sensor network script: Node: visibility | code: thr | fields: ts, lon, reading, level Sensor: humidity | fields: lon, level, ts, unit Task: Fetch lat from visibility where reading is greater than the average of depth in humidity for matching qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064708
train
v1
Sensor network script: Node: uv_index | code: prt | fields: reading, value, lat, type Sensor: rainfall | fields: lat, lon, ts, value Task: Get level from uv_index where depth appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064709
train
v3
Sensor network script: Node: evaporation | code: ref | fields: lon, level, lat, unit Sensor: dew_point | fields: type, lon, reading, qc Task: Get level from evaporation where value exceeds the average depth from dew_point for the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064710
train
v2
Sensor network script: Node: temperature | code: gst | fields: type, reading, lon, qc Sensor: snow_depth | fields: level, reading, ts, lat Task: Fetch level from temperature that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064711
train
v3
Sensor network script: Node: rainfall | code: hub | fields: lat, qc, ts, value Sensor: pressure | fields: unit, depth, level, reading Task: Get lat from rainfall where value exceeds the total reading from pressure for the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064712
train
v3
Sensor network script: Node: air_quality | code: ref | fields: value, qc, reading, level Sensor: frost | fields: reading, type, unit, lat Task: Fetch value from air_quality where value is greater than the average of value in frost for matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064713
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: ts, depth, reading, lat Sensor: dew_point | fields: level, value, qc, depth Task: Retrieve level from wind_speed whose depth is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064714
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: reading, ts, unit, lat Sensor: snow_depth | fields: level, qc, lat, reading Task: Retrieve value from soil_moisture with value above the COUNT(depth) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064715
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: lat, value, unit, depth Sensor: frost | fields: lon, value, depth, lat Task: Fetch value from cloud_cover where value is greater than the average of depth in frost for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064716
train
v2
Sensor network script: Node: dew_point | code: ref | fields: unit, level, type, ts Sensor: humidity | fields: lon, unit, level, value Task: Retrieve depth from dew_point that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064717
train
v1
Sensor network script: Node: humidity | code: ref | fields: qc, lon, unit, type Sensor: visibility | fields: unit, reading, type, value Task: Retrieve depth from humidity whose unit is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064718
train
v1
Sensor network script: Node: air_quality | code: clr | fields: lat, unit, reading, value Sensor: dew_point | fields: type, qc, ts, value Task: Fetch value from air_quality where unit exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064719
train
v2
Sensor network script: Node: lightning | code: thr | fields: ts, type, reading, depth Sensor: rainfall | fields: lon, qc, reading, depth Task: Get level from lightning where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064720
train
v1
Sensor network script: Node: temperature | code: gst | fields: level, lat, type, lon Sensor: uv_index | fields: lat, lon, ts, depth Task: Retrieve lon from temperature whose ts is found in uv_index records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064721
train
v1
Sensor network script: Node: rainfall | code: thr | fields: lat, lon, qc, unit Sensor: uv_index | fields: lat, type, value, depth Task: Fetch value from rainfall where qc exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064722
train
v1
Sensor network script: Node: frost | code: gst | fields: type, unit, lon, lat Sensor: rainfall | fields: ts, unit, reading, lon Task: Get reading from frost where ts appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064723
train
v2
Sensor network script: Node: temperature | code: mst | fields: lat, ts, reading, value Sensor: sunlight | fields: value, qc, reading, type Task: Fetch reading from temperature that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064724
train
v3
Sensor network script: Node: visibility | code: gst | fields: lat, value, level, qc Sensor: air_quality | fields: type, level, lon, reading Task: Retrieve lat from visibility with reading above the MAX(value) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064725
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: value, qc, type, level Sensor: sunlight | fields: level, unit, ts, depth Task: Fetch lon from soil_moisture where unit exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064726
train
v2
Sensor network script: Node: rainfall | code: ref | fields: value, level, depth, reading Sensor: sunlight | fields: lon, depth, ts, level Task: Retrieve depth from rainfall that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064727
train
v1
Sensor network script: Node: frost | code: mst | fields: level, qc, value, ts Sensor: snow_depth | fields: lon, value, depth, type Task: Retrieve value from frost whose qc is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064728
train
v1
Sensor network script: Node: pressure | code: mst | fields: depth, ts, qc, value Sensor: rainfall | fields: qc, level, lon, reading Task: Get value from pressure where type appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064729
train
v2
Sensor network script: Node: drought_index | code: mst | fields: unit, lat, type, level Sensor: frost | fields: qc, unit, ts, depth Task: Get value from drought_index where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064730
train
v2
Sensor network script: Node: dew_point | code: stn | fields: reading, ts, lat, lon Sensor: visibility | fields: reading, lat, level, unit Task: Retrieve lon from dew_point that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064731
train
v1
Sensor network script: Node: uv_index | code: mst | fields: qc, depth, type, ts Sensor: evaporation | fields: depth, type, lat, level Task: Get reading from uv_index where qc appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064732
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: unit, lon, type, qc Sensor: visibility | fields: unit, ts, level, depth Task: Get lon from soil_moisture where unit appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064733
train
v1
Sensor network script: Node: visibility | code: ref | fields: lat, depth, reading, ts Sensor: uv_index | fields: value, lat, ts, unit Task: Get reading from visibility where unit appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064734
train
v1
Sensor network script: Node: rainfall | code: stn | fields: reading, lat, unit, lon Sensor: pressure | fields: depth, qc, ts, reading Task: Get value from rainfall where qc appears in pressure readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064735
train
v3
Sensor network script: Node: evaporation | code: thr | fields: unit, qc, level, value Sensor: air_quality | fields: unit, lat, value, reading Task: Retrieve lat from evaporation with value above the MIN(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064736
train
v1
Sensor network script: Node: humidity | code: mst | fields: lat, qc, unit, level Sensor: soil_moisture | fields: lat, value, depth, type Task: Retrieve level from humidity whose unit is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064737
train
v1
Sensor network script: Node: visibility | code: ref | fields: level, unit, reading, type Sensor: soil_moisture | fields: type, value, depth, qc Task: Fetch value from visibility where depth exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064738
train
v2
Sensor network script: Node: uv_index | code: mst | fields: level, qc, type, lat Sensor: evaporation | fields: reading, level, unit, depth Task: Fetch reading from uv_index that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064739
train
v1
Sensor network script: Node: rainfall | code: ref | fields: unit, qc, lat, ts Sensor: uv_index | fields: depth, type, qc, unit Task: Fetch lon from rainfall where depth exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064740
train
v1
Sensor network script: Node: lightning | code: mst | fields: lon, reading, type, qc Sensor: soil_moisture | fields: unit, lat, type, reading Task: Get value from lightning where qc appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064741
train
v3
Sensor network script: Node: lightning | code: ref | fields: level, reading, qc, lon Sensor: uv_index | fields: type, value, depth, ts Task: Retrieve reading from lightning with depth above the AVG(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064742
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: lon, depth, unit, qc Sensor: snow_depth | fields: value, type, level, ts Task: Get level from wind_speed where depth exceeds the minimum value from snow_depth for the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064743
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: reading, ts, lon, unit Sensor: drought_index | fields: unit, value, level, depth Task: Fetch reading from wind_speed that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064744
train
v1
Sensor network script: Node: sunlight | code: stn | fields: depth, level, qc, unit Sensor: frost | fields: lon, type, qc, reading Task: Get depth from sunlight where unit appears in frost readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064745
train
v3
Sensor network script: Node: turbidity | code: stn | fields: lon, lat, qc, reading Sensor: humidity | fields: ts, lat, qc, depth Task: Get lon from turbidity where depth exceeds the average depth from humidity for the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064746
train
v3
Sensor network script: Node: drought_index | code: ref | fields: level, ts, depth, qc Sensor: temperature | fields: value, depth, reading, level Task: Fetch reading from drought_index where value is greater than the maximum of depth in temperature for matching qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "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_064747
train
v2
Sensor network script: Node: humidity | code: stn | fields: lon, qc, type, ts Sensor: sunlight | fields: lon, depth, reading, qc Task: Fetch depth from humidity that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064748
train
v3
Sensor network script: Node: frost | code: mst | fields: lat, value, type, depth Sensor: humidity | fields: level, value, depth, lon Task: Get depth from frost where value exceeds the count of depth from humidity for the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064749
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: type, qc, depth, level Sensor: air_quality | fields: value, level, ts, depth Task: Retrieve lon from soil_moisture whose ts is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064750
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: lon, type, depth, ts Sensor: frost | fields: type, lon, depth, unit Task: Retrieve lat from cloud_cover with depth above the COUNT(reading) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064751
train
v2
Sensor network script: Node: sunlight | code: thr | fields: value, qc, depth, lat Sensor: lightning | fields: lat, ts, depth, value Task: Retrieve value from sunlight that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064752
train
v1
Sensor network script: Node: humidity | code: thr | fields: level, lat, reading, ts Sensor: uv_index | fields: value, lon, depth, unit Task: Get depth from humidity where qc appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064753
train
v2
Sensor network script: Node: dew_point | code: ref | fields: unit, ts, reading, depth Sensor: visibility | fields: qc, level, lat, ts Task: Get value from dew_point where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064754
train
v2
Sensor network script: Node: humidity | code: mst | fields: type, lon, unit, reading Sensor: drought_index | fields: lat, unit, ts, depth Task: Retrieve value from humidity that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064755
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: type, level, depth, reading Sensor: lightning | fields: level, unit, value, lon Task: Fetch reading from cloud_cover where reading is greater than the total of reading in lightning for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064756
train
v3
Sensor network script: Node: lightning | code: stn | fields: level, lat, depth, unit Sensor: evaporation | fields: lat, lon, qc, value Task: Fetch level from lightning where value is greater than the total of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064757
train
v2
Sensor network script: Node: rainfall | code: gst | fields: depth, type, qc, value Sensor: sunlight | fields: lat, qc, level, value Task: Get lat from rainfall where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064758
train
v2
Sensor network script: Node: turbidity | code: mst | fields: depth, qc, value, type Sensor: visibility | fields: value, unit, lon, level Task: Get value from turbidity where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064759
train
v1
Sensor network script: Node: lightning | code: thr | fields: lat, ts, depth, type Sensor: soil_moisture | fields: lon, qc, depth, level Task: Retrieve value from lightning whose unit is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064760
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lat, value, lon, qc Sensor: humidity | fields: ts, lat, type, lon Task: Retrieve lon from air_quality whose ts is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064761
train
v1
Sensor network script: Node: frost | code: gst | fields: level, qc, unit, lon Sensor: uv_index | fields: value, qc, type, level Task: Retrieve value from frost whose qc is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064762
train
v1
Sensor network script: Node: sunlight | code: thr | fields: lat, lon, depth, type Sensor: dew_point | fields: type, reading, value, depth Task: Get lat from sunlight where ts appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064763
train
v3
Sensor network script: Node: temperature | code: thr | fields: lat, depth, value, ts Sensor: evaporation | fields: reading, depth, type, unit Task: Get depth from temperature where value exceeds the average value from evaporation for the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064764
train
v3
Sensor network script: Node: temperature | code: clr | fields: type, value, qc, lon Sensor: snow_depth | fields: lat, depth, lon, reading Task: Get depth from temperature where reading exceeds the average depth from snow_depth for the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064765
train
v2
Sensor network script: Node: frost | code: ref | fields: ts, type, unit, depth Sensor: snow_depth | fields: lon, lat, ts, value Task: Retrieve level from frost that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064766
train
v3
Sensor network script: Node: dew_point | code: prt | fields: value, type, lat, level Sensor: snow_depth | fields: ts, depth, type, reading Task: Get level from dew_point where depth exceeds the maximum depth from snow_depth for the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064767
train
v1
Sensor network script: Node: evaporation | code: mst | fields: reading, type, level, depth Sensor: rainfall | fields: lat, type, level, value Task: Get depth from evaporation where depth appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064768
train
v2
Sensor network script: Node: evaporation | code: prt | fields: level, unit, reading, depth Sensor: frost | fields: lon, level, depth, unit Task: Fetch lat from evaporation that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064769
train
v2
Sensor network script: Node: frost | code: thr | fields: reading, lat, unit, ts Sensor: soil_moisture | fields: ts, value, reading, level Task: Fetch lon from frost that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064770
train
v3
Sensor network script: Node: pressure | code: gst | fields: lat, type, depth, ts Sensor: temperature | fields: ts, qc, lon, value Task: Get depth from pressure where value exceeds the minimum value from temperature for the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064771
train
v3
Sensor network script: Node: air_quality | code: clr | fields: value, lon, level, unit Sensor: uv_index | fields: reading, lon, depth, type Task: Fetch value from air_quality where reading is greater than the minimum of reading in uv_index for matching type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064772
train
v2
Sensor network script: Node: uv_index | code: prt | fields: ts, unit, lon, level Sensor: cloud_cover | fields: type, ts, reading, unit Task: Get level from uv_index where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064773
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: unit, value, level, lon Sensor: turbidity | fields: lon, qc, lat, ts Task: Get reading from snow_depth where depth exceeds the total reading from turbidity for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064774
train
v2
Sensor network script: Node: sunlight | code: ref | fields: depth, unit, type, lat Sensor: humidity | fields: lat, reading, unit, level Task: Fetch value from sunlight that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064775
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lat, value, depth, unit Sensor: lightning | fields: value, unit, reading, depth Task: Fetch level from cloud_cover where depth exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064776
train
v3
Sensor network script: Node: pressure | code: mst | fields: unit, ts, lat, value Sensor: turbidity | fields: lon, reading, unit, depth Task: Retrieve lat from pressure with value above the MIN(reading) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064777
train
v3
Sensor network script: Node: visibility | code: mst | fields: lon, value, unit, level Sensor: sunlight | fields: unit, lat, reading, ts Task: Get lat from visibility where reading exceeds the total value from sunlight for the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064778
train
v3
Sensor network script: Node: visibility | code: ref | fields: qc, lat, type, level Sensor: evaporation | fields: lat, unit, level, lon Task: Retrieve reading from visibility with depth above the AVG(depth) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064779
train
v3
Sensor network script: Node: dew_point | code: stn | fields: lat, lon, ts, reading Sensor: rainfall | fields: qc, ts, lat, type Task: Retrieve value from dew_point with depth above the MIN(reading) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064780
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: depth, qc, level, lat Sensor: drought_index | fields: reading, lon, qc, type Task: Fetch lat from wind_speed that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064781
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, type, qc, depth Sensor: temperature | fields: value, level, qc, lon Task: Fetch reading from visibility that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064782
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: type, value, ts, lat Sensor: rainfall | fields: unit, ts, qc, level Task: Retrieve depth from cloud_cover that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064783
train
v2
Sensor network script: Node: dew_point | code: stn | fields: level, type, lon, unit Sensor: visibility | fields: reading, depth, level, qc Task: Fetch lon from dew_point that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064784
train
v2
Sensor network script: Node: dew_point | code: mst | fields: value, depth, level, qc Sensor: temperature | fields: level, qc, value, depth Task: Get lat from dew_point where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064785
train
v2
Sensor network script: Node: dew_point | code: clr | fields: depth, lon, lat, type Sensor: lightning | fields: lat, unit, ts, level Task: Get reading from dew_point where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064786
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: lon, unit, depth, lat Sensor: evaporation | fields: lat, type, level, qc Task: Fetch lon from soil_moisture where value is greater than the maximum of value in evaporation for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064787
train
v1
Sensor network script: Node: turbidity | code: hub | fields: level, qc, unit, type Sensor: evaporation | fields: value, reading, type, level Task: Fetch level from turbidity where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064788
train
v3
Sensor network script: Node: lightning | code: prt | fields: value, lat, lon, unit Sensor: evaporation | fields: qc, depth, value, ts Task: Get level from lightning where reading exceeds the average value from evaporation for the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064789
train
v2
Sensor network script: Node: evaporation | code: ref | fields: value, depth, level, ts Sensor: frost | fields: ts, reading, value, type Task: Fetch lon from evaporation that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064790
train
v3
Sensor network script: Node: temperature | code: ref | fields: reading, ts, level, lat Sensor: air_quality | fields: depth, value, type, lat Task: Get lon from temperature where reading exceeds the maximum depth from air_quality for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064791
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lat, level, value, depth Sensor: wind_speed | fields: type, lon, level, ts Task: Fetch value from soil_moisture where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064792
train
v2
Sensor network script: Node: turbidity | code: thr | fields: qc, level, type, value Sensor: sunlight | fields: level, qc, lat, lon Task: Get reading from turbidity where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064793
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: value, lat, type, ts Sensor: lightning | fields: ts, lon, qc, level Task: Retrieve lat from wind_speed with depth above the COUNT(depth) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064794
train
v2
Sensor network script: Node: drought_index | code: stn | fields: lat, unit, type, reading Sensor: rainfall | fields: type, depth, lon, ts Task: Fetch lat from drought_index that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064795
train
v1
Sensor network script: Node: air_quality | code: stn | fields: depth, value, level, type Sensor: dew_point | fields: unit, value, reading, depth Task: Get lon from air_quality where qc appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064796
train
v3
Sensor network script: Node: uv_index | code: gst | fields: depth, type, unit, ts Sensor: air_quality | fields: qc, unit, type, depth Task: Get depth from uv_index where value exceeds the minimum reading from air_quality for the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064797
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: value, lon, level, lat Sensor: soil_moisture | fields: unit, type, value, depth Task: Get value from wind_speed where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064798
train
v3
Sensor network script: Node: turbidity | code: gst | fields: ts, lon, lat, value Sensor: snow_depth | fields: depth, value, type, reading Task: Fetch value from turbidity where value is greater than the minimum of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064799
train