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: wind_speed | code: gst | fields: depth, ts, qc, type Sensor: dew_point | fields: depth, reading, lat, unit Task: Fetch depth from wind_speed where qc exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006900
train
v2
Sensor network script: Node: visibility | code: stn | fields: qc, ts, reading, lat Sensor: lightning | fields: reading, type, unit, level Task: Get level from visibility where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006901
train
v1
Sensor network script: Node: uv_index | code: thr | fields: ts, lat, unit, depth Sensor: visibility | fields: type, qc, unit, level Task: Retrieve reading from uv_index whose depth is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006902
train
v3
Sensor network script: Node: evaporation | code: ref | fields: type, level, value, ts Sensor: wind_speed | fields: level, ts, qc, depth Task: Fetch depth from evaporation where value is greater than the maximum of value in wind_speed for matching ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006903
train
v2
Sensor network script: Node: visibility | code: ref | fields: qc, value, type, level Sensor: cloud_cover | fields: value, depth, type, qc Task: Retrieve depth from visibility that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006904
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: level, type, reading, value Sensor: air_quality | fields: ts, value, unit, qc Task: Retrieve value from snow_depth with reading above the SUM(reading) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006905
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: lon, value, depth, ts Sensor: dew_point | fields: unit, type, lat, level Task: Get depth from cloud_cover where value exceeds the minimum depth from dew_point for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006906
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, reading, lat, level Sensor: temperature | fields: reading, unit, lat, qc Task: Retrieve lat from drought_index with depth above the COUNT(reading) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006907
train
v3
Sensor network script: Node: frost | code: thr | fields: reading, lon, unit, level Sensor: wind_speed | fields: value, unit, type, lon Task: Fetch lat from frost where value is greater than the minimum of reading in wind_speed for matching qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006908
train
v1
Sensor network script: Node: drought_index | code: mst | fields: qc, lon, lat, depth Sensor: evaporation | fields: lon, unit, reading, depth Task: Get level from drought_index where ts appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006909
train
v3
Sensor network script: Node: evaporation | code: clr | fields: lat, unit, reading, type Sensor: drought_index | fields: depth, qc, type, lat Task: Retrieve depth from evaporation with reading above the MIN(value) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006910
train
v2
Sensor network script: Node: evaporation | code: clr | fields: unit, ts, reading, qc Sensor: temperature | fields: type, level, unit, depth Task: Fetch reading from evaporation that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006911
train
v2
Sensor network script: Node: pressure | code: mst | fields: lon, reading, qc, level Sensor: humidity | fields: reading, depth, level, ts Task: Retrieve lon from pressure that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006912
train
v2
Sensor network script: Node: air_quality | code: gst | fields: value, unit, ts, reading Sensor: frost | fields: reading, value, unit, qc Task: Fetch value from air_quality that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006913
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: unit, reading, lon, level Sensor: rainfall | fields: type, lon, ts, level Task: Retrieve lat from soil_moisture with depth above the MAX(depth) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006914
train
v3
Sensor network script: Node: dew_point | code: ref | fields: depth, lon, reading, qc Sensor: turbidity | fields: level, depth, qc, ts Task: Retrieve value from dew_point with depth above the MAX(value) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006915
train
v1
Sensor network script: Node: temperature | code: gst | fields: qc, lat, value, depth Sensor: uv_index | fields: value, type, level, lon Task: Fetch level from temperature where unit exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006916
train
v1
Sensor network script: Node: frost | code: gst | fields: lat, qc, level, value Sensor: rainfall | fields: lon, reading, ts, unit Task: Get reading from frost where ts appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006917
train
v3
Sensor network script: Node: lightning | code: mst | fields: ts, value, unit, reading Sensor: soil_moisture | fields: depth, reading, ts, unit Task: Retrieve lon from lightning with depth above the COUNT(depth) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006918
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lon, reading, unit, level Sensor: uv_index | fields: qc, type, value, lat Task: Retrieve reading from cloud_cover whose qc is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006919
train
v2
Sensor network script: Node: temperature | code: gst | fields: value, lon, lat, level Sensor: humidity | fields: lon, level, type, ts Task: Get lon from temperature where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006920
train
v2
Sensor network script: Node: humidity | code: thr | fields: level, lon, lat, value Sensor: sunlight | fields: value, reading, ts, depth Task: Retrieve depth from humidity that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006921
train
v3
Sensor network script: Node: dew_point | code: ref | fields: lon, lat, depth, level Sensor: rainfall | fields: unit, lon, depth, qc Task: Fetch depth from dew_point where reading is greater than the average of reading in rainfall for matching depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006922
train
v3
Sensor network script: Node: air_quality | code: hub | fields: lat, level, lon, unit Sensor: rainfall | fields: lon, ts, reading, lat Task: Fetch depth from air_quality where reading is greater than the minimum of depth in rainfall for matching qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006923
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: depth, unit, qc, level Sensor: dew_point | fields: depth, ts, unit, value Task: Retrieve lon from snow_depth that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006924
train
v2
Sensor network script: Node: humidity | code: ref | fields: reading, level, qc, ts Sensor: drought_index | fields: unit, reading, qc, type Task: Get level from humidity where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006925
train
v1
Sensor network script: Node: visibility | code: prt | fields: lat, value, level, qc Sensor: dew_point | fields: type, reading, value, unit Task: Retrieve lat from visibility whose ts is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006926
train
v2
Sensor network script: Node: uv_index | code: clr | fields: ts, unit, depth, value Sensor: dew_point | fields: type, unit, lon, reading Task: Get depth from uv_index where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006927
train
v2
Sensor network script: Node: humidity | code: thr | fields: qc, lon, type, lat Sensor: evaporation | fields: level, lon, unit, reading Task: Fetch depth from humidity that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006928
train
v2
Sensor network script: Node: temperature | code: mst | fields: lat, lon, depth, level Sensor: sunlight | fields: depth, lat, ts, qc Task: Fetch lat from temperature that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006929
train
v2
Sensor network script: Node: air_quality | code: stn | fields: qc, lat, type, value Sensor: snow_depth | fields: depth, unit, level, qc Task: Get lat from air_quality where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006930
train
v3
Sensor network script: Node: sunlight | code: prt | fields: ts, lon, depth, reading Sensor: turbidity | fields: value, type, level, depth Task: Retrieve reading from sunlight with reading above the AVG(reading) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006931
train
v2
Sensor network script: Node: temperature | code: thr | fields: level, unit, qc, ts Sensor: visibility | fields: ts, depth, lat, lon Task: Fetch lat from temperature that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006932
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: depth, reading, lat, lon Sensor: pressure | fields: type, lat, ts, reading Task: Fetch lat from snow_depth that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006933
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: unit, ts, depth, lon Sensor: pressure | fields: qc, type, level, unit Task: Fetch lon from snow_depth that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006934
train
v1
Sensor network script: Node: air_quality | code: prt | fields: ts, level, qc, depth Sensor: turbidity | fields: type, level, depth, lon Task: Retrieve reading from air_quality whose ts is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006935
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: type, lon, depth, reading Sensor: uv_index | fields: unit, value, depth, lon Task: Fetch value from cloud_cover where value is greater than the maximum of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006936
train
v2
Sensor network script: Node: rainfall | code: prt | fields: lon, level, depth, qc Sensor: turbidity | fields: qc, ts, lon, reading Task: Get lon from rainfall where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006937
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: reading, unit, lon, type Sensor: lightning | fields: lon, value, unit, reading Task: Retrieve reading from soil_moisture whose depth is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006938
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: qc, ts, lon, depth Sensor: frost | fields: lat, value, type, reading Task: Get lat from soil_moisture where reading exceeds the minimum value from frost for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006939
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: unit, value, ts, qc Sensor: cloud_cover | fields: ts, type, unit, depth Task: Retrieve depth from soil_moisture whose ts is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006940
train
v3
Sensor network script: Node: frost | code: prt | fields: ts, unit, level, value Sensor: humidity | fields: depth, type, qc, reading Task: Retrieve lon from frost with value above the COUNT(value) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "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_006941
train
v1
Sensor network script: Node: frost | code: ref | fields: ts, type, unit, depth Sensor: temperature | fields: level, ts, unit, type Task: Fetch reading from frost where qc exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006942
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: lon, ts, lat, type Sensor: rainfall | fields: reading, lat, depth, qc Task: Fetch level from snow_depth that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006943
train
v2
Sensor network script: Node: evaporation | code: mst | fields: ts, type, unit, reading Sensor: soil_moisture | fields: qc, unit, type, level Task: Fetch depth from evaporation that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006944
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: depth, ts, value, lon Sensor: turbidity | fields: lat, lon, level, type Task: Retrieve depth from soil_moisture whose ts is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006945
train
v3
Sensor network script: Node: drought_index | code: gst | fields: lon, qc, ts, level Sensor: air_quality | fields: lat, unit, value, lon Task: Retrieve level from drought_index with value above the SUM(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006946
train
v2
Sensor network script: Node: turbidity | code: mst | fields: reading, qc, lon, unit Sensor: dew_point | fields: level, unit, lon, value Task: Retrieve value from turbidity that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006947
train
v2
Sensor network script: Node: turbidity | code: mst | fields: level, ts, unit, qc Sensor: visibility | fields: level, unit, depth, reading Task: Fetch depth from turbidity that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006948
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lon, lat, reading, value Sensor: snow_depth | fields: depth, qc, reading, unit Task: Retrieve value from turbidity with reading above the MIN(reading) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "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_006949
train
v1
Sensor network script: Node: rainfall | code: gst | fields: value, lon, unit, ts Sensor: dew_point | fields: ts, lon, value, lat Task: Get lon from rainfall where qc appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006950
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: value, ts, lon, type Sensor: lightning | fields: value, qc, level, lon Task: Fetch lat from snow_depth where depth is greater than the minimum of reading in lightning for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006951
train
v3
Sensor network script: Node: humidity | code: stn | fields: value, qc, type, lon Sensor: rainfall | fields: ts, type, reading, level Task: Retrieve lon from humidity with depth above the COUNT(value) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006952
train
v2
Sensor network script: Node: humidity | code: hub | fields: type, depth, level, ts Sensor: temperature | fields: qc, type, lon, ts Task: Retrieve depth from humidity that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006953
train
v2
Sensor network script: Node: frost | code: clr | fields: unit, level, lon, depth Sensor: soil_moisture | fields: unit, lat, value, level Task: Retrieve reading from frost that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006954
train
v1
Sensor network script: Node: visibility | code: prt | fields: qc, value, lat, lon Sensor: drought_index | fields: ts, qc, unit, lon Task: Retrieve depth from visibility whose depth is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006955
train
v2
Sensor network script: Node: uv_index | code: stn | fields: lat, qc, level, reading Sensor: sunlight | fields: ts, lat, lon, level Task: Retrieve depth from uv_index that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "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_006956
train
v2
Sensor network script: Node: uv_index | code: stn | fields: value, unit, qc, lat Sensor: lightning | fields: reading, lat, qc, ts Task: Fetch lat from uv_index that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006957
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lat, type, unit, reading Sensor: temperature | fields: value, ts, lon, level Task: Get value from snow_depth where depth exceeds the total value from temperature for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006958
train
v3
Sensor network script: Node: uv_index | code: hub | fields: depth, ts, qc, value Sensor: pressure | fields: level, lat, reading, qc Task: Get depth from uv_index where value exceeds the count of value from pressure for the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006959
train
v1
Sensor network script: Node: temperature | code: hub | fields: lon, lat, type, value Sensor: drought_index | fields: type, level, qc, depth Task: Fetch depth from temperature where unit exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006960
train
v2
Sensor network script: Node: sunlight | code: gst | fields: lat, value, depth, unit Sensor: visibility | fields: ts, lat, depth, qc Task: Retrieve lon from sunlight that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006961
train
v3
Sensor network script: Node: lightning | code: stn | fields: lat, level, qc, value Sensor: dew_point | fields: depth, unit, reading, lon Task: Fetch lat from lightning where depth is greater than the maximum of value in dew_point for matching depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006962
train
v1
Sensor network script: Node: uv_index | code: clr | fields: qc, ts, lon, value Sensor: humidity | fields: type, depth, lat, qc Task: Fetch lat from uv_index where ts exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006963
train
v3
Sensor network script: Node: air_quality | code: prt | fields: level, lon, reading, unit Sensor: evaporation | fields: depth, qc, unit, reading Task: Get depth from air_quality where value exceeds the total depth from evaporation for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006964
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, level, lon, depth Sensor: lightning | fields: type, unit, lon, level Task: Fetch value from rainfall where depth exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006965
train
v1
Sensor network script: Node: pressure | code: ref | fields: ts, lon, unit, lat Sensor: humidity | fields: unit, reading, type, lon Task: Retrieve lon from pressure whose ts is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006966
train
v2
Sensor network script: Node: drought_index | code: thr | fields: type, lon, reading, depth Sensor: sunlight | fields: lat, unit, ts, value Task: Fetch depth from drought_index that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006967
train
v1
Sensor network script: Node: visibility | code: mst | fields: type, depth, ts, lat Sensor: turbidity | fields: ts, level, depth, qc Task: Retrieve value from visibility whose ts is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006968
train
v3
Sensor network script: Node: dew_point | code: ref | fields: lat, level, reading, ts Sensor: sunlight | fields: lon, type, depth, ts Task: Fetch lon from dew_point where depth is greater than the count of of value in sunlight for matching qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006969
train
v3
Sensor network script: Node: lightning | code: ref | fields: type, qc, level, ts Sensor: evaporation | fields: level, depth, reading, lat Task: Retrieve depth from lightning with value above the AVG(reading) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006970
train
v1
Sensor network script: Node: sunlight | code: stn | fields: reading, unit, level, lat Sensor: temperature | fields: depth, unit, lon, type Task: Fetch reading from sunlight where qc exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006971
train
v2
Sensor network script: Node: drought_index | code: thr | fields: depth, type, value, unit Sensor: rainfall | fields: lat, level, ts, value Task: Retrieve reading from drought_index that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006972
train
v1
Sensor network script: Node: uv_index | code: thr | fields: unit, qc, type, reading Sensor: wind_speed | fields: unit, ts, depth, lon Task: Fetch lat from uv_index where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006973
train
v2
Sensor network script: Node: frost | code: thr | fields: type, qc, unit, reading Sensor: lightning | fields: ts, unit, lat, depth Task: Fetch lon from frost that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006974
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lat, reading, ts, value Sensor: turbidity | fields: lon, type, value, lat Task: Retrieve depth from soil_moisture whose unit is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006975
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: reading, type, lon, level Sensor: frost | fields: value, qc, depth, reading Task: Get depth from wind_speed where unit appears in frost readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006976
train
v2
Sensor network script: Node: evaporation | code: ref | fields: ts, value, unit, type Sensor: sunlight | fields: type, level, lat, depth Task: Get value from evaporation where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006977
train
v3
Sensor network script: Node: temperature | code: stn | fields: value, lon, reading, unit Sensor: cloud_cover | fields: ts, type, unit, value Task: Get level from temperature where depth exceeds the maximum reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006978
train
v1
Sensor network script: Node: temperature | code: ref | fields: depth, lon, value, qc Sensor: wind_speed | fields: ts, lon, reading, lat Task: Retrieve lat from temperature whose type is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006979
train
v3
Sensor network script: Node: temperature | code: ref | fields: unit, level, lon, depth Sensor: visibility | fields: qc, reading, ts, value Task: Retrieve lat from temperature with value above the AVG(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006980
train
v3
Sensor network script: Node: lightning | code: hub | fields: reading, value, ts, type Sensor: frost | fields: lat, value, depth, qc Task: Retrieve lat from lightning with depth above the AVG(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006981
train
v1
Sensor network script: Node: rainfall | code: gst | fields: type, depth, reading, ts Sensor: evaporation | fields: ts, lon, lat, reading Task: Fetch reading from rainfall where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006982
train
v3
Sensor network script: Node: frost | code: thr | fields: value, unit, reading, depth Sensor: evaporation | fields: lat, depth, value, lon Task: Fetch level from frost where depth is greater than the maximum of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006983
train
v3
Sensor network script: Node: frost | code: stn | fields: reading, ts, depth, qc Sensor: dew_point | fields: unit, depth, lon, value Task: Get value from frost where depth exceeds the average value from dew_point for the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006984
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: lat, value, lon, reading Sensor: lightning | fields: value, level, lon, ts Task: Retrieve lon from cloud_cover with value above the SUM(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006985
train
v3
Sensor network script: Node: turbidity | code: thr | fields: reading, lat, type, qc Sensor: rainfall | fields: qc, unit, depth, lon Task: Fetch lat from turbidity where reading is greater than the minimum of value in rainfall for matching type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006986
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: reading, depth, ts, unit Sensor: turbidity | fields: reading, lon, ts, type Task: Fetch lat from wind_speed where reading is greater than the total of value in turbidity for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006987
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: reading, lat, value, depth Sensor: snow_depth | fields: lon, level, qc, value Task: Retrieve lat from cloud_cover that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006988
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: ts, type, lon, lat Sensor: humidity | fields: reading, unit, level, qc Task: Fetch lon from cloud_cover that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006989
train
v3
Sensor network script: Node: visibility | code: gst | fields: lat, reading, level, value Sensor: snow_depth | fields: level, depth, unit, type Task: Get lon from visibility where reading exceeds the maximum depth from snow_depth for the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006990
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: reading, lat, type, lon Sensor: evaporation | fields: reading, level, unit, depth Task: Fetch lon from wind_speed where reading is greater than the average of reading in evaporation for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006991
train
v3
Sensor network script: Node: uv_index | code: mst | fields: lat, level, lon, type Sensor: soil_moisture | fields: reading, qc, depth, value Task: Retrieve reading from uv_index with value above the SUM(depth) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006992
train
v3
Sensor network script: Node: evaporation | code: thr | fields: value, unit, depth, lat Sensor: wind_speed | fields: unit, reading, lon, lat Task: Retrieve depth from evaporation with value above the SUM(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006993
train
v3
Sensor network script: Node: lightning | code: thr | fields: depth, qc, value, reading Sensor: visibility | fields: reading, depth, type, lon Task: Retrieve lat from lightning with value above the COUNT(depth) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006994
train
v1
Sensor network script: Node: evaporation | code: stn | fields: reading, value, qc, depth Sensor: soil_moisture | fields: depth, value, lat, qc Task: Fetch depth from evaporation where ts exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006995
train
v1
Sensor network script: Node: sunlight | code: ref | fields: type, reading, level, lat Sensor: turbidity | fields: qc, value, depth, ts Task: Get reading from sunlight where type appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006996
train
v2
Sensor network script: Node: frost | code: stn | fields: value, ts, unit, lat Sensor: visibility | fields: reading, lon, depth, lat Task: Get level from frost where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006997
train
v2
Sensor network script: Node: drought_index | code: thr | fields: lat, lon, value, type Sensor: sunlight | fields: unit, depth, lon, value Task: Retrieve lat from drought_index that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006998
train
v1
Sensor network script: Node: drought_index | code: ref | fields: level, qc, ts, lon Sensor: humidity | fields: unit, lon, depth, reading Task: Retrieve lat from drought_index whose qc is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006999
train