variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: temperature | code: clr | fields: depth, qc, lat, ts Sensor: soil_moisture | fields: lat, type, qc, value Task: Retrieve level from temperature with value above the MIN(reading) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079100
train
v2
Sensor network script: Node: temperature | code: thr | fields: unit, reading, lat, qc Sensor: sunlight | fields: reading, unit, lat, depth Task: Retrieve level from temperature that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079101
train
v1
Sensor network script: Node: visibility | code: mst | fields: lon, depth, level, ts Sensor: temperature | fields: value, qc, lon, reading Task: Fetch lon from visibility where qc exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079102
train
v1
Sensor network script: Node: air_quality | code: clr | fields: type, qc, depth, lat Sensor: lightning | fields: level, value, lat, type Task: Retrieve lon from air_quality whose unit is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079103
train
v2
Sensor network script: Node: turbidity | code: stn | fields: lon, type, lat, unit Sensor: uv_index | fields: level, unit, reading, lat Task: Fetch lon from turbidity that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079104
train
v3
Sensor network script: Node: lightning | code: prt | fields: qc, level, reading, type Sensor: cloud_cover | fields: depth, ts, lon, lat Task: Fetch lat from lightning where depth is greater than the count of of depth in cloud_cover for matching depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079105
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lon, depth, ts, reading Sensor: dew_point | fields: value, depth, type, lon Task: Fetch reading from air_quality that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079106
train
v3
Sensor network script: Node: visibility | code: thr | fields: type, depth, level, reading Sensor: pressure | fields: depth, value, lon, unit Task: Fetch lat from visibility where value is greater than the minimum of reading in pressure for matching type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079107
train
v2
Sensor network script: Node: dew_point | code: clr | fields: depth, level, unit, lon Sensor: soil_moisture | fields: value, ts, reading, type Task: Get lon from dew_point where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079108
train
v1
Sensor network script: Node: humidity | code: thr | fields: unit, lat, value, lon Sensor: soil_moisture | fields: lon, qc, type, level Task: Fetch reading from humidity where unit exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079109
train
v3
Sensor network script: Node: drought_index | code: clr | fields: level, qc, lon, value Sensor: evaporation | fields: ts, level, reading, value Task: Get lon from drought_index where depth exceeds the average value from evaporation for the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079110
train
v3
Sensor network script: Node: lightning | code: ref | fields: lat, unit, level, depth Sensor: wind_speed | fields: type, qc, value, lon Task: Fetch value from lightning where value is greater than the maximum of reading in wind_speed for matching unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079111
train
v1
Sensor network script: Node: dew_point | code: prt | fields: depth, ts, value, lon Sensor: sunlight | fields: value, depth, level, qc Task: Retrieve level from dew_point whose qc is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079112
train
v1
Sensor network script: Node: uv_index | code: prt | fields: reading, ts, lat, value Sensor: visibility | fields: value, qc, depth, level Task: Retrieve level from uv_index whose qc is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079113
train
v2
Sensor network script: Node: sunlight | code: prt | fields: type, value, reading, level Sensor: snow_depth | fields: qc, type, lon, depth Task: Fetch value from sunlight that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079114
train
v3
Sensor network script: Node: drought_index | code: mst | fields: ts, type, value, reading Sensor: temperature | fields: qc, reading, type, ts Task: Fetch depth from drought_index where value is greater than the total of value in temperature for matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079115
train
v2
Sensor network script: Node: humidity | code: hub | fields: lat, value, reading, type Sensor: drought_index | fields: type, depth, reading, lon Task: Retrieve reading from humidity that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079116
train
v3
Sensor network script: Node: humidity | code: thr | fields: level, unit, ts, type Sensor: frost | fields: reading, level, value, ts Task: Fetch depth from humidity where depth is greater than the total of value in frost for matching qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079117
train
v3
Sensor network script: Node: temperature | code: mst | fields: lat, reading, depth, unit Sensor: turbidity | fields: depth, lat, reading, lon Task: Get lat from temperature where depth exceeds the average reading from turbidity for the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079118
train
v2
Sensor network script: Node: uv_index | code: gst | fields: value, reading, level, type Sensor: cloud_cover | fields: qc, value, lat, ts Task: Retrieve level from uv_index that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079119
train
v3
Sensor network script: Node: humidity | code: prt | fields: value, type, level, ts Sensor: soil_moisture | fields: ts, reading, depth, unit Task: Fetch level from humidity where depth is greater than the maximum of reading in soil_moisture for matching type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079120
train
v2
Sensor network script: Node: sunlight | code: hub | fields: lat, depth, value, lon Sensor: snow_depth | fields: type, lon, unit, qc Task: Retrieve lon from sunlight that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079121
train
v3
Sensor network script: Node: uv_index | code: prt | fields: qc, lat, depth, value Sensor: lightning | fields: ts, unit, qc, reading Task: Get depth from uv_index where value exceeds the count of depth from lightning for the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079122
train
v2
Sensor network script: Node: uv_index | code: thr | fields: lat, level, depth, reading Sensor: evaporation | fields: value, qc, level, depth Task: Get reading from uv_index where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079123
train
v2
Sensor network script: Node: pressure | code: thr | fields: lat, level, qc, reading Sensor: frost | fields: value, depth, reading, unit Task: Retrieve reading from pressure that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079124
train
v1
Sensor network script: Node: uv_index | code: clr | fields: value, level, lon, reading Sensor: sunlight | fields: level, lon, depth, lat Task: Retrieve level from uv_index whose ts is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079125
train
v1
Sensor network script: Node: sunlight | code: prt | fields: unit, level, reading, depth Sensor: drought_index | fields: ts, depth, lon, unit Task: Get level from sunlight where type appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079126
train
v1
Sensor network script: Node: dew_point | code: clr | fields: type, depth, lat, value Sensor: lightning | fields: lon, unit, lat, value Task: Get lat from dew_point where depth appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079127
train
v1
Sensor network script: Node: pressure | code: prt | fields: lon, unit, level, lat Sensor: sunlight | fields: lat, depth, level, unit Task: Fetch lat from pressure where depth exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079128
train
v2
Sensor network script: Node: rainfall | code: hub | fields: unit, qc, reading, level Sensor: uv_index | fields: lat, qc, unit, value Task: Fetch value from rainfall that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079129
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: reading, ts, type, lon Sensor: visibility | fields: ts, qc, level, type Task: Get depth from snow_depth where unit appears in visibility readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079130
train
v2
Sensor network script: Node: frost | code: prt | fields: ts, qc, type, lat Sensor: cloud_cover | fields: lat, qc, reading, level Task: Get depth from frost where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079131
train
v1
Sensor network script: Node: uv_index | code: gst | fields: type, lat, ts, unit Sensor: pressure | fields: ts, qc, unit, reading Task: Fetch lon from uv_index where unit exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079132
train
v1
Sensor network script: Node: frost | code: hub | fields: lon, level, qc, type Sensor: uv_index | fields: type, reading, qc, depth Task: Get lon from frost where qc appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079133
train
v1
Sensor network script: Node: pressure | code: thr | fields: type, unit, qc, reading Sensor: air_quality | fields: lat, qc, unit, value Task: Retrieve value from pressure whose unit is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079134
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: type, depth, level, reading Sensor: lightning | fields: lat, qc, depth, unit Task: Retrieve lat from wind_speed that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079135
train
v3
Sensor network script: Node: dew_point | code: gst | fields: ts, value, unit, lat Sensor: air_quality | fields: ts, lat, unit, reading Task: Retrieve lon from dew_point with depth above the MAX(reading) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079136
train
v1
Sensor network script: Node: humidity | code: mst | fields: depth, lat, type, lon Sensor: uv_index | fields: lat, qc, value, lon Task: Fetch lat from humidity where qc exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079137
train
v2
Sensor network script: Node: turbidity | code: ref | fields: type, depth, ts, lon Sensor: dew_point | fields: value, lat, lon, ts Task: Retrieve lon from turbidity that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079138
train
v3
Sensor network script: Node: dew_point | code: prt | fields: lat, value, reading, level Sensor: rainfall | fields: value, qc, lon, level Task: Fetch level from dew_point where depth is greater than the total of reading in rainfall for matching depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079139
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lon, value, unit, depth Sensor: sunlight | fields: lon, ts, qc, reading Task: Fetch value from drought_index where ts exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079140
train
v1
Sensor network script: Node: turbidity | code: stn | fields: ts, reading, lat, level Sensor: temperature | fields: reading, lon, type, level Task: Retrieve depth from turbidity whose qc is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079141
train
v1
Sensor network script: Node: air_quality | code: stn | fields: type, lat, reading, ts Sensor: drought_index | fields: lat, unit, reading, ts Task: Retrieve reading from air_quality whose ts is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079142
train
v1
Sensor network script: Node: rainfall | code: thr | fields: unit, ts, value, qc Sensor: dew_point | fields: unit, depth, lon, lat Task: Get reading from rainfall where depth appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079143
train
v3
Sensor network script: Node: uv_index | code: hub | fields: type, reading, qc, unit Sensor: frost | fields: qc, lat, value, reading Task: Get lon from uv_index where depth exceeds the minimum depth from frost for the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079144
train
v2
Sensor network script: Node: pressure | code: stn | fields: level, type, lat, ts Sensor: humidity | fields: ts, unit, reading, depth Task: Retrieve lat from pressure that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079145
train
v2
Sensor network script: Node: visibility | code: mst | fields: lat, unit, value, lon Sensor: soil_moisture | fields: value, reading, level, unit Task: Get lon from visibility where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079146
train
v3
Sensor network script: Node: turbidity | code: hub | fields: ts, type, depth, reading Sensor: sunlight | fields: ts, value, lat, depth Task: Fetch reading from turbidity where depth is greater than the count of of reading in sunlight for matching ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079147
train
v3
Sensor network script: Node: air_quality | code: hub | fields: level, ts, lon, unit Sensor: cloud_cover | fields: lon, unit, level, reading Task: Fetch reading from air_quality where value is greater than the total of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079148
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: type, reading, lat, qc Sensor: cloud_cover | fields: lon, lat, level, value Task: Get reading from soil_moisture where value exceeds the maximum depth from cloud_cover for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079149
train
v1
Sensor network script: Node: dew_point | code: ref | fields: level, reading, type, ts Sensor: drought_index | fields: reading, lat, lon, value Task: Get depth from dew_point where depth appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079150
train
v2
Sensor network script: Node: pressure | code: stn | fields: lon, unit, reading, type Sensor: lightning | fields: depth, qc, ts, reading Task: Retrieve reading from pressure that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079151
train
v3
Sensor network script: Node: uv_index | code: gst | fields: lon, lat, reading, ts Sensor: sunlight | fields: reading, depth, lon, unit Task: Retrieve lon from uv_index with value above the AVG(reading) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079152
train
v2
Sensor network script: Node: sunlight | code: prt | fields: type, qc, lon, lat Sensor: lightning | fields: ts, reading, lon, value Task: Get lat from sunlight where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079153
train
v2
Sensor network script: Node: turbidity | code: stn | fields: lon, unit, ts, type Sensor: air_quality | fields: unit, depth, reading, level Task: Get lon from turbidity where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079154
train
v3
Sensor network script: Node: frost | code: thr | fields: value, ts, reading, lon Sensor: turbidity | fields: depth, lat, qc, level Task: Retrieve lon from frost with value above the SUM(depth) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079155
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: type, qc, value, unit Sensor: temperature | fields: qc, depth, value, type Task: Retrieve value from wind_speed that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079156
train
v2
Sensor network script: Node: pressure | code: thr | fields: ts, level, type, lon Sensor: turbidity | fields: depth, unit, ts, value Task: Fetch reading from pressure that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079157
train
v2
Sensor network script: Node: visibility | code: hub | fields: reading, type, depth, qc Sensor: humidity | fields: level, value, lat, qc Task: Fetch lon from visibility that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079158
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: qc, type, level, lon Sensor: drought_index | fields: depth, level, unit, lon Task: Retrieve reading from snow_depth that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079159
train
v3
Sensor network script: Node: sunlight | code: clr | fields: unit, reading, level, depth Sensor: drought_index | fields: value, lon, reading, lat Task: Get reading from sunlight where value exceeds the total reading from drought_index for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079160
train
v1
Sensor network script: Node: temperature | code: thr | fields: qc, value, lon, reading Sensor: dew_point | fields: level, lon, value, type Task: Fetch lat from temperature where type exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079161
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: ts, depth, unit, type Sensor: cloud_cover | fields: lat, lon, depth, level Task: Retrieve reading from soil_moisture with reading above the SUM(reading) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079162
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: depth, level, reading, type Sensor: dew_point | fields: value, ts, type, lat Task: Get reading from snow_depth where depth appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079163
train
v3
Sensor network script: Node: frost | code: prt | fields: level, ts, depth, lon Sensor: sunlight | fields: level, ts, qc, type Task: Retrieve lon from frost with value above the MIN(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079164
train
v2
Sensor network script: Node: uv_index | code: hub | fields: lat, value, type, reading Sensor: air_quality | fields: lat, type, ts, depth Task: Retrieve depth from uv_index that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079165
train
v2
Sensor network script: Node: air_quality | code: hub | fields: type, ts, unit, lon Sensor: rainfall | fields: reading, level, ts, lon Task: Get level from air_quality where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079166
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: lon, ts, level, lat Sensor: temperature | fields: unit, value, depth, lon Task: Fetch value from cloud_cover where unit exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079167
train
v3
Sensor network script: Node: uv_index | code: ref | fields: depth, qc, level, ts Sensor: soil_moisture | fields: value, type, ts, unit Task: Retrieve value from uv_index with value above the SUM(value) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079168
train
v1
Sensor network script: Node: humidity | code: hub | fields: lat, level, reading, type Sensor: evaporation | fields: depth, ts, type, unit Task: Retrieve depth from humidity whose ts is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079169
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: qc, unit, ts, level Sensor: wind_speed | fields: lon, ts, unit, type Task: Retrieve depth from snow_depth whose ts is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079170
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: unit, reading, qc, lon Sensor: rainfall | fields: type, level, lat, depth Task: Get level from soil_moisture where depth exceeds the count of depth from rainfall for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079171
train
v2
Sensor network script: Node: evaporation | code: mst | fields: unit, value, depth, level Sensor: soil_moisture | fields: depth, lat, level, reading Task: Get value from evaporation where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079172
train
v2
Sensor network script: Node: drought_index | code: prt | fields: reading, qc, depth, level Sensor: uv_index | fields: level, type, lat, qc Task: Fetch lat from drought_index that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079173
train
v1
Sensor network script: Node: visibility | code: ref | fields: value, ts, lat, depth Sensor: uv_index | fields: unit, level, depth, ts Task: Get value from visibility where qc appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079174
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: lon, qc, value, unit Sensor: drought_index | fields: lon, qc, depth, level Task: Get value from snow_depth where value exceeds the count of depth from drought_index for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079175
train
v3
Sensor network script: Node: air_quality | code: ref | fields: unit, type, ts, value Sensor: temperature | fields: unit, reading, type, ts Task: Fetch lon from air_quality where reading is greater than the average of depth in temperature for matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079176
train
v2
Sensor network script: Node: turbidity | code: stn | fields: lon, reading, ts, value Sensor: humidity | fields: value, lon, reading, type Task: Get lat from turbidity where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079177
train
v1
Sensor network script: Node: uv_index | code: stn | fields: reading, lon, ts, level Sensor: pressure | fields: lon, level, depth, lat Task: Fetch lon from uv_index where depth exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079178
train
v2
Sensor network script: Node: frost | code: mst | fields: depth, lon, ts, value Sensor: uv_index | fields: lat, value, qc, depth Task: Fetch level from frost that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079179
train
v2
Sensor network script: Node: dew_point | code: clr | fields: depth, value, qc, type Sensor: humidity | fields: value, ts, level, depth Task: Fetch lon from dew_point that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079180
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: reading, value, ts, lon Sensor: temperature | fields: lat, qc, level, type Task: Fetch lon from snow_depth where ts exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079181
train
v1
Sensor network script: Node: pressure | code: mst | fields: ts, depth, value, lon Sensor: frost | fields: ts, type, reading, unit Task: Retrieve depth from pressure whose ts is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079182
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: level, qc, value, reading Sensor: snow_depth | fields: ts, reading, lat, lon Task: Get reading from wind_speed where value exceeds the count of value from snow_depth for the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079183
train
v3
Sensor network script: Node: lightning | code: clr | fields: lat, qc, level, lon Sensor: rainfall | fields: qc, level, unit, ts Task: Retrieve depth from lightning with value above the SUM(depth) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079184
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: unit, lon, reading, lat Sensor: wind_speed | fields: level, unit, lon, qc Task: Fetch value from snow_depth that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079185
train
v3
Sensor network script: Node: sunlight | code: thr | fields: level, lat, reading, value Sensor: drought_index | fields: ts, unit, reading, type Task: Fetch depth from sunlight where reading is greater than the count of of reading in drought_index for matching unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079186
train
v1
Sensor network script: Node: uv_index | code: gst | fields: qc, lon, lat, ts Sensor: pressure | fields: depth, lat, level, value Task: Retrieve depth from uv_index whose unit is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079187
train
v2
Sensor network script: Node: evaporation | code: clr | fields: level, unit, depth, reading Sensor: uv_index | fields: qc, ts, depth, value Task: Fetch reading from evaporation that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079188
train
v1
Sensor network script: Node: pressure | code: gst | fields: lat, level, type, depth Sensor: dew_point | fields: type, level, ts, reading Task: Fetch reading from pressure where depth exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079189
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: reading, value, lon, level Sensor: evaporation | fields: value, ts, type, unit Task: Get value from snow_depth where value exceeds the minimum depth from evaporation for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079190
train
v1
Sensor network script: Node: pressure | code: prt | fields: lat, value, ts, lon Sensor: wind_speed | fields: level, lon, unit, lat Task: Get lat from pressure where type appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079191
train
v1
Sensor network script: Node: turbidity | code: thr | fields: type, lon, value, qc Sensor: air_quality | fields: qc, ts, value, lon Task: Get lon from turbidity where ts appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079192
train
v2
Sensor network script: Node: uv_index | code: gst | fields: level, depth, unit, lon Sensor: evaporation | fields: ts, lat, unit, depth Task: Get lon from uv_index where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079193
train
v1
Sensor network script: Node: lightning | code: ref | fields: level, ts, depth, qc Sensor: soil_moisture | fields: qc, unit, depth, level Task: Get lon from lightning where depth appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079194
train
v2
Sensor network script: Node: air_quality | code: thr | fields: ts, lat, depth, unit Sensor: sunlight | fields: depth, unit, lat, reading Task: Retrieve depth from air_quality that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "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_079195
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: depth, level, type, ts Sensor: wind_speed | fields: qc, type, reading, level Task: Fetch lon from soil_moisture where depth is greater than the maximum of value in wind_speed for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079196
train
v2
Sensor network script: Node: evaporation | code: gst | fields: lon, ts, unit, depth Sensor: air_quality | fields: value, lat, reading, depth Task: Fetch lat from evaporation that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079197
train
v1
Sensor network script: Node: temperature | code: prt | fields: qc, lon, level, unit Sensor: frost | fields: lat, lon, ts, qc Task: Retrieve lat from temperature whose ts is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079198
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: qc, level, depth, reading Sensor: drought_index | fields: lon, ts, depth, reading Task: Retrieve reading from soil_moisture with depth above the MIN(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079199
train